ViewUI::getTypedData

public ViewUI::getTypedData() Gets a typed data object for this entity object. The returned typed data object wraps this entity and allows dealing with entities based on the generic typed data API. Return value \Drupal\Core\TypedData\ComplexDataInterface The typed data object for this entity. Overrides EntityInterface::getTypedData See also \Drupal\Core\TypedData\TypedDataInterface File core/modules/views_ui/src/ViewUI.php, line 1248 Class ViewUI Stores UI related temporary settings. N

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