public function Vocabulary::uri

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

Overrides Entity::uri

File

drupal/core/modules/taxonomy/lib/Drupal/taxonomy/Plugin/Core/Entity/Vocabulary.php, line 97
Contains \Drupal\taxonomy\Plugin\Core\Entity\Vocabulary.

Class

Vocabulary
Defines the taxonomy vocabulary entity.

Namespace

Drupal\taxonomy\Plugin\Core\Entity

Code

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