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
1 2 3 | public function setStatus( $status ) { return $this ->storage->setStatus( $status ); } |
Please login to continue.