public function View::uri

Overrides Drupal\Core\Entity\EntityInterface::uri().

Overrides Entity::uri

File

drupal/core/modules/views/lib/Drupal/views/Plugin/Core/Entity/View.php, line 135
Definition of Drupal\views\Plugin\Core\Entity\View.

Class

View
Defines a View configuration entity class.

Namespace

Drupal\views\Plugin\Core\Entity

Code

public function uri() {
  return array(
    'path' => 'admin/structure/views/view/' . $this
      ->id(),
    'options' => array(
      'entity_type' => $this->entityType,
      'entity' => $this,
    ),
  );
}