ViewUI::load

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

1
2
3
public static function load($id) {
  return View::load($id);
}
doc_Drupal
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.