You are here

class TeamTitleProvider in Apigee Edge 8

Team specific title additions and overrides.

Hierarchy

Expanded class hierarchy of TeamTitleProvider

File

modules/apigee_edge_teams/src/Entity/TeamTitleProvider.php, line 30

Namespace

Drupal\apigee_edge_teams\Entity
View source
class TeamTitleProvider extends EdgeEntityTitleProvider {

  /**
   * Provides a title for the team members listing page.
   *
   * @param \Drupal\Core\Routing\RouteMatchInterface $route_match
   *   The route match.
   * @param \Drupal\Core\Entity\EntityInterface $_entity
   *   (optional) An entity, passed in directly from the request attributes.
   *
   * @return string|null
   *   The title for the team members listing page, null if an entity was found.
   */
  public function teamMembersList(RouteMatchInterface $route_match, EntityInterface $_entity = NULL) {
    if ($entity = $this
      ->doGetEntity($route_match, $_entity)) {
      return $this
        ->t('@entity_type Members', [
        '@entity_type' => ucfirst($this->entityTypeManager
          ->getDefinition($entity
          ->getEntityTypeId())
          ->getSingularLabel()),
      ]);
    }
  }

}

Members

Namesort descending Modifiers Type Description Overrides
EdgeEntityTitleProvider::deleteTitle public function Provides a generic delete title callback. Overrides EntityController::deleteTitle
EdgeEntityTitleProvider::editTitle public function Provides a generic edit title callback. Overrides EntityController::editTitle
EdgeEntityTitleProvider::title public function Provides a generic title callback for a single entity. Overrides EntityController::title
EntityController::$entityRepository protected property The entity repository.
EntityController::$entityTypeBundleInfo protected property The entity type bundle info.
EntityController::$entityTypeManager protected property The entity manager.
EntityController::$renderer protected property The renderer.
EntityController::addBundleTitle public function Provides a generic add title callback for entities with bundles.
EntityController::addPage public function Displays add links for the available bundles.
EntityController::addTitle public function Provides a generic add title callback for an entity type.
EntityController::create public static function Instantiates a new instance of this class. Overrides ContainerInjectionInterface::create
EntityController::doGetEntity protected function Determines the entity.
EntityController::loadBundleDescriptions protected function Expands the bundle information with descriptions, if known.
EntityController::redirect protected function Returns a redirect response object for the specified route. Overrides UrlGeneratorTrait::redirect
EntityController::__construct public function Constructs a new EntityController.
StringTranslationTrait::$stringTranslation protected property The string translation service. 1
StringTranslationTrait::formatPlural protected function Formats a string containing a count of items.
StringTranslationTrait::getNumberOfPlurals protected function Returns the number of plurals supported by a given language.
StringTranslationTrait::getStringTranslation protected function Gets the string translation service.
StringTranslationTrait::setStringTranslation public function Sets the string translation service to use. 2
StringTranslationTrait::t protected function Translates a string to the current language or to a given language.
TeamTitleProvider::teamMembersList public function Provides a title for the team members listing page.
UrlGeneratorTrait::$urlGenerator protected property The url generator.
UrlGeneratorTrait::getUrlGenerator Deprecated protected function Returns the URL generator service.
UrlGeneratorTrait::setUrlGenerator Deprecated public function Sets the URL generator service.
UrlGeneratorTrait::url Deprecated protected function Generates a URL or path for a specific route based on the given parameters.