ViewUI::getDependencies

public ViewUI::getDependencies() Gets the configuration dependencies. Return value array An array of dependencies, keyed by $type. Overrides ConfigEntityInterface::getDependencies See also \Drupal\Core\Config\Entity\ConfigDependencyManager File core/modules/views_ui/src/ViewUI.php, line 1220 Class ViewUI Stores UI related temporary settings. Namespace Drupal\views_ui Code public function getDependencies() { return $this->storage->getDependencies(); }

ViewUI::getDisplay

public &ViewUI::getDisplay($display_id) Retrieves a specific display's configuration by reference. Parameters string $display_id: The display ID to retrieve, e.g., 'default', 'page_1', 'block_2'. Return value array A reference to the specified display configuration. Overrides ViewEntityInterface::getDisplay File core/modules/views_ui/src/ViewUI.php, line 901 Class ViewUI Stores UI related temporary settings. Namespace Drupal\views_ui Code public function &getDisplay($display_

ViewUI::getEntityType

public ViewUI::getEntityType() Gets the entity type definition. Return value \Drupal\Core\Entity\EntityTypeInterface The entity type definition. Overrides EntityInterface::getEntityType File core/modules/views_ui/src/ViewUI.php, line 943 Class ViewUI Stores UI related temporary settings. Namespace Drupal\views_ui Code public function getEntityType() { return $this->storage->getEntityType(); }

ViewUI::getEntityTypeId

public ViewUI::getEntityTypeId() Gets the ID of the type of the entity. Return value string The entity type ID. Overrides EntityInterface::getEntityTypeId File core/modules/views_ui/src/ViewUI.php, line 929 Class ViewUI Stores UI related temporary settings. Namespace Drupal\views_ui Code public function getEntityTypeId() { return $this->storage->getEntityTypeId(); }

ViewUI::getExecutable

public ViewUI::getExecutable() Gets an executable instance for this view. Return value \Drupal\views\ViewExecutable A view executable instance. Overrides ViewEntityInterface::getExecutable File core/modules/views_ui/src/ViewUI.php, line 1135 Class ViewUI Stores UI related temporary settings. Namespace Drupal\views_ui Code public function getExecutable() { return $this->storage->getExecutable(); }

ViewUI::getFormProgress

public ViewUI::getFormProgress() Get the user's current progress through the form stack. Return value FALSE if the user is not currently in a multiple-form stack. Otherwise, an associative array with the following keys: current: The number of the current form on the stack. total: The total number of forms originally on the stack. File core/modules/views_ui/src/ViewUI.php, line 835 Class ViewUI Stores UI related temporary settings. Namespace Drupal\views_ui Code public function get

ViewUI::getOriginalId

public ViewUI::getOriginalId() Gets the original ID. Return value int|string|null The original ID, or NULL if no ID was set or for entity types that do not support renames. Overrides EntityInterface::getOriginalId File core/modules/views_ui/src/ViewUI.php, line 1076 Class ViewUI Stores UI related temporary settings. Namespace Drupal\views_ui Code public function getOriginalId() { return $this->storage->getOriginalId(); }

ViewUI::getOverrideValues

public ViewUI::getOverrideValues($form, FormStateInterface $form_state) Return the was_defaulted, is_defaulted and revert state of a form. File core/modules/views_ui/src/ViewUI.php, line 349 Class ViewUI Stores UI related temporary settings. Namespace Drupal\views_ui Code public function getOverrideValues($form, FormStateInterface $form_state) { // Make sure the dropdown exists in the first place. if ($form_state->hasValue(array('override', 'dropdown'))) { // #default_value

ViewUI::getStandardButtons

public ViewUI::getStandardButtons(&$form, FormStateInterface $form_state, $form_id, $name = NULL) Provide a standard set of Apply/Cancel/OK buttons for the forms. Also provide a hidden op operator because the forms plugin doesn't seem to properly provide which button was clicked. TODO: Is the hidden op operator still here somewhere, or is that part of the docblock outdated? File core/modules/views_ui/src/ViewUI.php, line 279 Class ViewUI Stores UI related temporary settings. Namespac

ViewUI::getThirdPartyProviders

public ViewUI::getThirdPartyProviders() Gets the list of third parties that store information. Return value array The list of third parties. Overrides ThirdPartySettingsInterface::getThirdPartyProviders File core/modules/views_ui/src/ViewUI.php, line 1297 Class ViewUI Stores UI related temporary settings. Namespace Drupal\views_ui Code public function getThirdPartyProviders() { return $this->storage->getThirdPartyProviders(); }