You are here

class Frontpage in Sitemap 8.2

Same name and namespace in other branches
  1. 2.0.x src/Plugin/Sitemap/Frontpage.php \Drupal\sitemap\Plugin\Sitemap\Frontpage

Provides a link to the front page for the sitemap.

Plugin annotation


@Sitemap(
  id = "frontpage",
  title = @Translation("Site front page"),
  description = @Translation("Displays a sitemap link for the site front page."),
  settings = {
    "title" = "Front page",
    "rss" = "/rss.xml",
  },
  enabled = TRUE,
)

Hierarchy

Expanded class hierarchy of Frontpage

File

src/Plugin/Sitemap/Frontpage.php, line 25

Namespace

Drupal\sitemap\Plugin\Sitemap
View source
class Frontpage extends SitemapBase {

  /**
   * {@inheritdoc}
   */
  public function settingsForm(array $form, FormStateInterface $form_state) {
    $form = parent::settingsForm($form, $form_state);

    // Provide a default title.
    $form['title']['#default_value'] = $this->settings['title'] ?: $this
      ->t('Front page');

    //@TODO: Convert to route instead of relative html path.
    $form['rss'] = [
      '#type' => 'textfield',
      '#title' => $this
        ->t('Feed URL'),
      '#default_value' => $this->settings['rss'],
      '#description' => $this
        ->t('Specify the RSS feed for the front page. If you do not wish to display a feed, leave this field blank.'),
    ];
    return $form;
  }

  /**
   * {@inheritdoc}
   */
  public function view() {
    $title = $this->settings['title'];
    $content[] = [
      '#theme' => 'sitemap_frontpage_item',
      '#text' => $this
        ->t('Front page of %sn', [
        '%sn' => \Drupal::config('system.site')
          ->get('name'),
      ]),
      '#url' => Url::fromRoute('<front>', [], [
        'html' => TRUE,
      ])
        ->toString(),
      '#feed' => $this->settings['rss'],
    ];
    return [
      '#theme' => 'sitemap_item',
      '#title' => $title,
      '#content' => $content,
      '#sitemap' => $this,
    ];
  }

}

Members

Namesort descending Modifiers Type Description Overrides
Frontpage::settingsForm public function Returns a form to configure settings for the mapping. Overrides SitemapBase::settingsForm
Frontpage::view public function Builds a renderable array for a sitemap item. Overrides SitemapInterface::view
PluginBase::$configuration protected property Configuration information passed into the plugin. 1
PluginBase::$pluginDefinition protected property The plugin implementation definition. 1
PluginBase::$pluginId protected property The plugin_id.
PluginBase::DERIVATIVE_SEPARATOR constant A string which is used to separate base plugin IDs from the derivative ID.
PluginBase::getBaseId public function Gets the base_plugin_id of the plugin instance. Overrides DerivativeInspectionInterface::getBaseId
PluginBase::getDerivativeId public function Gets the derivative_id of the plugin instance. Overrides DerivativeInspectionInterface::getDerivativeId
PluginBase::getPluginDefinition public function Gets the definition of the plugin implementation. Overrides PluginInspectionInterface::getPluginDefinition 3
PluginBase::getPluginId public function Gets the plugin_id of the plugin instance. Overrides PluginInspectionInterface::getPluginId
PluginBase::isConfigurable public function Determines if the plugin is configurable.
SitemapBase::$enabled public property A Boolean indicating whether this mapping is enabled.
SitemapBase::$provider public property The name of the provider that owns this mapping.
SitemapBase::$settings public property An associative array containing the configured settings of the sitemap_map.
SitemapBase::$sitemapConfig protected property The global sitemap config.
SitemapBase::$weight public property The weight of this mapping compared to others in the sitemap.
SitemapBase::baseConfigurationDefaults protected function Returns generic default configuration for sitemap plugins.
SitemapBase::calculateDependencies public function Calculates dependencies for the configured plugin. Overrides DependentPluginInterface::calculateDependencies
SitemapBase::defaultConfiguration public function Gets default configuration for this plugin. Overrides ConfigurableInterface::defaultConfiguration
SitemapBase::getConfiguration public function Gets this plugin's configuration. Overrides ConfigurableInterface::getConfiguration
SitemapBase::getDescription public function Returns the administrative description for this mapping plugin. Overrides SitemapInterface::getDescription
SitemapBase::getLabel public function Returns the administrative label for this mapping plugin. Overrides SitemapInterface::getLabel
SitemapBase::setConfiguration public function Sets the configuration for this plugin instance. Overrides ConfigurableInterface::setConfiguration
SitemapBase::settingsSummary public function Returns a short summary for the current mapping settings. Overrides SitemapInterface::settingsSummary
SitemapBase::__construct public function Constructs a \Drupal\Component\Plugin\PluginBase object. Overrides PluginBase::__construct
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.