You are here

LinkRelationType.php in Drupal 8

Same filename and directory in other branches
  1. 9 core/lib/Drupal/Core/Http/LinkRelationType.php

Namespace

Drupal\Core\Http

File

core/lib/Drupal/Core/Http/LinkRelationType.php
View source
<?php

namespace Drupal\Core\Http;

use Drupal\Core\Plugin\PluginBase;

/**
 * Defines a single link relationship type.
 */
class LinkRelationType extends PluginBase implements LinkRelationTypeInterface {

  /**
   * {@inheritdoc}
   */
  public function isRegistered() {
    return !$this
      ->isExtension();
  }

  /**
   * {@inheritdoc}
   */
  public function isExtension() {
    return isset($this->pluginDefinition['uri']);
  }

  /**
   * {@inheritdoc}
   */
  public function getRegisteredName() {
    return $this
      ->isRegistered() ? $this
      ->getPluginId() : NULL;
  }

  /**
   * {@inheritdoc}
   */
  public function getExtensionUri() {
    return $this
      ->isExtension() ? $this->pluginDefinition['uri'] : NULL;
  }

  /**
   * {@inheritdoc}
   */
  public function getDescription() {
    return isset($this->pluginDefinition['description']) ? $this->pluginDefinition['description'] : '';
  }

  /**
   * {@inheritdoc}
   */
  public function getReference() {
    return isset($this->pluginDefinition['reference']) ? $this->pluginDefinition['reference'] : '';
  }

  /**
   * {@inheritdoc}
   */
  public function getNotes() {
    return isset($this->pluginDefinition['notes']) ? $this->pluginDefinition['notes'] : '';
  }

}

Classes

Namesort descending Description
LinkRelationType Defines a single link relationship type.