ViewUI::setOriginalId

public ViewUI::setOriginalId($id) Sets the original ID. Parameters int|string|null $id: The new ID to set as original ID. If the entity supports renames, setting NULL will prevent an update from being considered a rename. Return value $this Overrides EntityInterface::setOriginalId File core/modules/views_ui/src/ViewUI.php, line 1083 Class ViewUI Stores UI related temporary settings. Namespace Drupal\views_ui Code public function setOriginalId($id) { return $this->storage->set

ViewUI::setStatus

public ViewUI::setStatus($status) Sets the status of the configuration entity. Parameters bool $status: The status of the configuration entity. Return value $this Overrides ConfigEntityInterface::setStatus File core/modules/views_ui/src/ViewUI.php, line 163 Class ViewUI Stores UI related temporary settings. Namespace Drupal\views_ui Code public function setStatus($status) { return $this->storage->setStatus($status); }

ViewUI::setSyncing

public ViewUI::setSyncing($syncing) Sets the status of the isSyncing flag. Parameters bool $status: The status of the sync flag. Return value $this Overrides ConfigEntityInterface::setSyncing File core/modules/views_ui/src/ViewUI.php, line 182 Class ViewUI Stores UI related temporary settings. Namespace Drupal\views_ui Code public function setSyncing($syncing) { $this->isSyncing = $syncing; }

ViewUI::setThirdPartySetting

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

ViewUI::setUninstalling

public ViewUI::setUninstalling($isUninstalling) File core/modules/views_ui/src/ViewUI.php, line 189 Class ViewUI Stores UI related temporary settings. Namespace Drupal\views_ui Code public function setUninstalling($isUninstalling) { $this->isUninstalling = $isUninstalling; }

ViewUI::standardCancel

public ViewUI::standardCancel($form, FormStateInterface $form_state) Submit handler for cancel button File core/modules/views_ui/src/ViewUI.php, line 262 Class ViewUI Stores UI related temporary settings. Namespace Drupal\views_ui Code public function standardCancel($form, FormStateInterface $form_state) { if (!empty($this->changed) && isset($this->form_cache)) { unset($this->form_cache); $this->cacheSet(); } $form_state->setRedirectUrl($this->u

ViewUI::standardSubmit

public ViewUI::standardSubmit($form, FormStateInterface $form_state) Basic submit handler applicable to all 'standard' forms. This submit handler determines whether the user wants the submitted changes to apply to the default display or to the current display, and dispatches control appropriately. File core/modules/views_ui/src/ViewUI.php, line 214 Class ViewUI Stores UI related temporary settings. Namespace Drupal\views_ui Code public function standardSubmit($form, FormStateInterface

ViewUI::startQueryCapture

public ViewUI::startQueryCapture() Set up query capturing. \Drupal\Core\Database\Database stores the queries that it runs, if logging is enabled. See also ViewUI::endQueryCapture() File core/modules/views_ui/src/ViewUI.php, line 500 Class ViewUI Stores UI related temporary settings. Namespace Drupal\views_ui Code public function startQueryCapture() { Database::startLog('views'); }

ViewUI::status

public ViewUI::status() Returns whether the configuration entity is enabled. Status implementations for configuration entities should follow these general rules: Status does not affect the loading of entities. I.e. Disabling configuration entities should only have UI/access implications. It should only take effect when a 'status' key is explicitly declared in the entity_keys info of a configuration entity's annotation data. Each entity implementation (entity/controller) is responsible for check

ViewUI::submitItemAdd

public ViewUI::submitItemAdd($form, FormStateInterface $form_state) Submit handler for adding new item(s) to a view. File core/modules/views_ui/src/ViewUI.php, line 425 Class ViewUI Stores UI related temporary settings. Namespace Drupal\views_ui Code public function submitItemAdd($form, FormStateInterface $form_state) { $type = $form_state->get('type'); $types = ViewExecutable::getHandlerTypes(); $section = $types[$type]['plural']; $display_id = $form_state->get('display_