You are here

EdgeEntityRouteProvider.php in Apigee Edge 8

File

src/Entity/EdgeEntityRouteProvider.php
View source
<?php

/**
 * Copyright 2018 Google Inc.
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * version 2 as published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
 * MA 02110-1301, USA.
 */
namespace Drupal\apigee_edge\Entity;

use Drupal\Core\Entity\EntityTypeInterface;
use Drupal\Core\Entity\Routing\DefaultHtmlRouteProvider;

/**
 * Default route provider for Apigee Edge entities.
 */
class EdgeEntityRouteProvider extends DefaultHtmlRouteProvider {

  /**
   * {@inheritdoc}
   */
  protected function getCanonicalRoute(EntityTypeInterface $entity_type) {
    $route = parent::getCanonicalRoute($entity_type);
    if ($route) {
      $route
        ->setDefault('_title_callback', EdgeEntityTitleProvider::class . '::title');
    }
    return $route;
  }

  /**
   * {@inheritdoc}
   */
  protected function getEditFormRoute(EntityTypeInterface $entity_type) {
    $route = parent::getEditFormRoute($entity_type);
    if ($route) {
      $route
        ->setDefault('_title_callback', EdgeEntityTitleProvider::class . '::editTitle');

      // We must load the entity from Apigee Edge directly and omit cached
      // version on edit forms.
      $route
        ->setOption('apigee_edge_load_unchanged_entity', 'true');
    }
    return $route;
  }

  /**
   * {@inheritdoc}
   */
  protected function getDeleteFormRoute(EntityTypeInterface $entity_type) {
    $route = parent::getDeleteFormRoute($entity_type);
    if ($route) {
      $route
        ->setDefault('_title_callback', EdgeEntityTitleProvider::class . '::deleteTitle');
    }
    return $route;
  }

}

Classes

Namesort descending Description
EdgeEntityRouteProvider Default route provider for Apigee Edge entities.