You are here

MenuLinkLabel.php in GraphQL 8.4

File

src/Plugin/GraphQL/DataProducer/Menu/MenuLink/MenuLinkLabel.php
View source
<?php

namespace Drupal\graphql\Plugin\GraphQL\DataProducer\Menu\MenuLink;

use Drupal\Core\Menu\MenuLinkInterface;
use Drupal\graphql\Plugin\GraphQL\DataProducer\DataProducerPluginBase;

/**
 * Returns the label of a menu link.
 *
 * @todo Fix input context type.
 *
 * @DataProducer(
 *   id = "menu_link_label",
 *   name = @Translation("Menu link label"),
 *   description = @Translation("Returns the label of a menu link."),
 *   produces = @ContextDefinition("string",
 *     label = @Translation("Label")
 *   ),
 *   consumes = {
 *     "link" = @ContextDefinition("any",
 *       label = @Translation("Menu link")
 *     )
 *   }
 * )
 */
class MenuLinkLabel extends DataProducerPluginBase {

  /**
   * Resolver.
   *
   * @param \Drupal\Core\Menu\MenuLinkInterface $link
   *
   * @return mixed
   */
  public function resolve(MenuLinkInterface $link) {
    return $link
      ->getTitle();
  }

}

Classes

Namesort descending Description
MenuLinkLabel Returns the label of a menu link.