Issue #2160797 by Tim Bozeman, dawehner: Add inheritdoc to several methods in RowPluginBase
parent
1b20fe2f4b
commit
d9227efb35
|
@ -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']])) {
|
||||
|
|
Loading…
Reference in New Issue