public static function ViewUI::create in Drupal 8
Same name and namespace in other branches
- 9 core/modules/views_ui/src/ViewUI.php \Drupal\views_ui\ViewUI::create()
- 10 core/modules/views_ui/src/ViewUI.php \Drupal\views_ui\ViewUI::create()
Constructs a new entity object, without permanently saving it.
Parameters
array $values: (optional) An array of values to set, keyed by property name. If the entity type has bundles, the bundle key has to be specified.
Return value
static The entity object.
Overrides EntityInterface::create
File
- core/
modules/ views_ui/ src/ ViewUI.php, line 979
Class
- ViewUI
- Stores UI related temporary settings.
Namespace
Drupal\views_uiCode
public static function create(array $values = []) {
return View::create($values);
}