ViewUI::hasLinkTemplate

public ViewUI::hasLinkTemplate($key) Indicates if a link template exists for a given key. Parameters string $key: The link type. Return value bool TRUE if the link template exists, FALSE otherwise. Overrides EntityInterface::hasLinkTemplate File core/modules/views_ui/src/ViewUI.php, line 1177 Class ViewUI Stores UI related temporary settings. Namespace Drupal\views_ui Code public function hasLinkTemplate($key) { return $this->storage->hasLinkTemplate($key); }

ViewUI::getThirdPartySettings

public ViewUI::getThirdPartySettings($module) Gets all third-party settings of a given module. Parameters string $module: The module providing the third-party settings. Return value array An array of key-value pairs. Overrides ThirdPartySettingsInterface::getThirdPartySettings File core/modules/views_ui/src/ViewUI.php, line 1283 Class ViewUI Stores UI related temporary settings. Namespace Drupal\views_ui Code public function getThirdPartySettings($module) { return $this->storage

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(); }

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::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::getThirdPartySetting

public ViewUI::getThirdPartySetting($module, $key, $default = NULL) Gets the value of a third-party setting. Parameters string $module: The module providing the third-party setting. string $key: The setting name. mixed $default: The default value Return value mixed The value. Overrides ThirdPartySettingsInterface::getThirdPartySetting File core/modules/views_ui/src/ViewUI.php, line 1276 Class ViewUI Stores UI related temporary settings. Namespace Drupal\views_ui Code public function

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::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::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::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(); }