Issue #2160797 by Tim Bozeman, dawehner: Add inheritdoc to several methods in RowPluginBase

8.0.x
Jennifer Hodgdon 2014-01-06 15:14:51 -08:00
parent 1b20fe2f4b
commit d9227efb35
1 changed files with 6 additions and 1 deletions

View File

@ -47,7 +47,9 @@ abstract class RowPluginBase extends PluginBase {
return $this->usesFields;
}
/**
* {@inheritdoc}
*/
protected function defineOptions() {
$options = parent::defineOptions();
if (isset($this->base_table)) {
@ -117,6 +119,9 @@ abstract class RowPluginBase extends PluginBase {
*/
public function submitOptionsForm(&$form, &$form_state) { }
/**
* {@inheritdoc}
*/
public function query() {
if (isset($this->base_table)) {
if (isset($this->options['relationship']) && isset($this->view->relationship[$this->options['relationship']])) {