public function Shortcut::uri

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

Overrides Entity::uri

File

drupal/core/modules/shortcut/lib/Drupal/shortcut/Plugin/Core/Entity/Shortcut.php, line 72
Contains \Drupal\shortcut\Plugin\Core\Entity\Shortcut.

Class

Shortcut
Defines the Shortcut configuration entity.

Namespace

Drupal\shortcut\Plugin\Core\Entity

Code

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