class LinkRelationType

Same name and namespace in other branches
  1. 9 core/lib/Drupal/Core/Http/LinkRelationType.php \Drupal\Core\Http\LinkRelationType
  2. 8.9.x core/lib/Drupal/Core/Http/LinkRelationType.php \Drupal\Core\Http\LinkRelationType
  3. 10 core/lib/Drupal/Core/Http/LinkRelationType.php \Drupal\Core\Http\LinkRelationType

Defines a single link relationship type.

Hierarchy

Expanded class hierarchy of LinkRelationType

1 file declares its use of LinkRelationType
LinkRelationsTest.php in core/tests/Drupal/KernelTests/Core/Http/LinkRelationsTest.php

File

core/lib/Drupal/Core/Http/LinkRelationType.php, line 10

Namespace

Drupal\Core\Http
View source
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 $this->pluginDefinition['description'] ?? '';
    }
    
    /**
     * {@inheritdoc}
     */
    public function getReference() {
        return $this->pluginDefinition['reference'] ?? '';
    }
    
    /**
     * {@inheritdoc}
     */
    public function getNotes() {
        return $this->pluginDefinition['notes'] ?? '';
    }

}

Members

Title Sort descending Modifiers Object type Summary Overriden Title
LinkRelationType::getDescription public function Returns the link relation type description. Overrides LinkRelationTypeInterface::getDescription
LinkRelationType::getExtensionUri public function Returns the extension link relation type URI. Overrides LinkRelationTypeInterface::getExtensionUri
LinkRelationType::getNotes public function Returns some extra notes/comments about this link relation type. Overrides LinkRelationTypeInterface::getNotes
LinkRelationType::getReference public function Returns the URL pointing to the reference of the link relation type. Overrides LinkRelationTypeInterface::getReference
LinkRelationType::getRegisteredName public function Returns the registered link relation type name. Overrides LinkRelationTypeInterface::getRegisteredName
LinkRelationType::isExtension public function Indicates whether this link relation type is of the 'extension' kind. Overrides LinkRelationTypeInterface::isExtension
LinkRelationType::isRegistered public function Indicates whether this link relation type is of the 'registered' kind. Overrides LinkRelationTypeInterface::isRegistered

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.