Skip to content
Snippets Groups Projects
Commit d9227efb authored by Jennifer Hodgdon's avatar Jennifer Hodgdon
Browse files

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

parent 1b20fe2f
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
......@@ -47,7 +47,9 @@ function usesFields() {
return $this->usesFields;
}
/**
* {@inheritdoc}
*/
protected function defineOptions() {
$options = parent::defineOptions();
if (isset($this->base_table)) {
......@@ -117,6 +119,9 @@ public function validateOptionsForm(&$form, &$form_state) { }
*/
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']])) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment