You are here

PinterestNopin.php in Metatag 8

File

metatag_pinterest/src/Plugin/metatag/Tag/PinterestNopin.php
View source
<?php

namespace Drupal\metatag_pinterest\Plugin\metatag\Tag;

use Drupal\metatag\Plugin\metatag\Tag\MetaNameBase;

/**
 * The Pinterest "nopin" meta tag.
 *
 * @MetatagTag(
 *   id = "pinterest_nopin",
 *   label = @Translation("No pin"),
 *   description = @Translation("Do not pin anything from this page. When selected, this option will take precedence over all options below."),
 *   name = "pinterest",
 *   group = "pinterest",
 *   weight = 1,
 *   type = "string",
 *   secure = FALSE,
 *   multiple = FALSE
 * )
 */
class PinterestNopin extends MetaNameBase {

  /**
   * {@inheritdoc}
   */
  public function form(array $element = []) {
    $form = [
      '#type' => 'checkbox',
      '#title' => $this
        ->label(),
      '#description' => $this
        ->description(),
      '#default_value' => $this->value === 'nopin' ?: '',
      '#required' => isset($element['#required']) ? $element['#required'] : FALSE,
      '#element_validate' => [
        [
          get_class($this),
          'validateTag',
        ],
      ],
      '#return_value' => 'nopin',
    ];
    return $form;
  }

}

Classes

Namesort descending Description
PinterestNopin The Pinterest "nopin" meta tag.