You are here

public function FeedType::uri in Feeds 8.3

File

src/Entity/FeedType.php, line 548

Class

FeedType
Defines the Feeds feed type entity.

Namespace

Drupal\feeds\Entity

Code

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