public static ViewUI::load($id)
Loads an entity.
Parameters
mixed $id: The id of the entity to load.
Return value
static The entity object or NULL if there is no entity with the given ID.
Overrides EntityInterface::load
File
- core/modules/views_ui/src/ViewUI.php, line 957
Class
- ViewUI
- Stores UI related temporary settings.
Namespace
Drupal\views_ui
Code
public static function load($id) { return View::load($id); }
Please login to continue.