class SchemaPlaceBase in Schema.org Metatag 8
Schema.org Place items should extend this class.
Hierarchy
- class \Drupal\Component\Plugin\PluginBase implements DerivativeInspectionInterface, PluginInspectionInterface
- class \Drupal\metatag\Plugin\metatag\Tag\MetaNameBase uses StringTranslationTrait
- class \Drupal\schema_metatag\Plugin\metatag\Tag\SchemaNameBase implements ContainerFactoryPluginInterface, SchemaMetatagTestTagInterface
- class \Drupal\schema_metatag\Plugin\metatag\Tag\SchemaAddressBase uses SchemaAddressTrait
- class \Drupal\schema_metatag\Plugin\metatag\Tag\SchemaPlaceBase uses SchemaPlaceTrait
 
 
 - class \Drupal\schema_metatag\Plugin\metatag\Tag\SchemaAddressBase uses SchemaAddressTrait
 
 - class \Drupal\schema_metatag\Plugin\metatag\Tag\SchemaNameBase implements ContainerFactoryPluginInterface, SchemaMetatagTestTagInterface
 
 - class \Drupal\metatag\Plugin\metatag\Tag\MetaNameBase uses StringTranslationTrait
 
Expanded class hierarchy of SchemaPlaceBase
5 files declare their use of SchemaPlaceBase
- SchemaEventLocation.php in schema_event/
src/ Plugin/ metatag/ Tag/ SchemaEventLocation.php  - SchemaJobPostingJobLocation.php in schema_job_posting/
src/ Plugin/ metatag/ Tag/ SchemaJobPostingJobLocation.php  - SchemaMetatagTestPlace.php in tests/
modules/ schema_metatag_test/ src/ Plugin/ metatag/ Tag/ SchemaMetatagTestPlace.php  - SchemaSpecialAnnouncementAnnouncementLocation.php in schema_special_announcement/
src/ Plugin/ metatag/ Tag/ SchemaSpecialAnnouncementAnnouncementLocation.php  - SchemaSpecialAnnouncementSpatialCoverage.php in schema_special_announcement/
src/ Plugin/ metatag/ Tag/ SchemaSpecialAnnouncementSpatialCoverage.php  
1 string reference to 'SchemaPlaceBase'
- SchemaActionTrait::actionProperties in src/
Plugin/ metatag/ Tag/ SchemaActionTrait.php  - Return an array of the unique properties for an action type.
 
File
- src/
Plugin/ metatag/ Tag/ SchemaPlaceBase.php, line 8  
Namespace
Drupal\schema_metatag\Plugin\metatag\TagView source
class SchemaPlaceBase extends SchemaAddressBase {
  use SchemaPlaceTrait;
  /**
   * {@inheritdoc}
   */
  public function form(array $element = []) {
    $value = $this
      ->schemaMetatagManager()
      ->unserialize($this
      ->value());
    $input_values = [
      'title' => $this
        ->label(),
      'description' => $this
        ->description(),
      'value' => $value,
      '#required' => isset($element['#required']) ? $element['#required'] : FALSE,
      'visibility_selector' => $this
        ->visibilitySelector(),
    ];
    $form = $this
      ->placeForm($input_values);
    if (empty($this
      ->multiple())) {
      unset($form['pivot']);
    }
    return $form;
  }
  /**
   * {@inheritdoc}
   */
  public static function testValue() {
    $items = [];
    $keys = [
      '@type',
      'name',
      'url',
      'address',
      'geo',
    ];
    foreach ($keys as $key) {
      switch ($key) {
        case 'address':
          $items[$key] = SchemaAddressBase::testValue();
          break;
        case 'geo':
          $items[$key] = SchemaGeoBase::testValue();
          break;
        case '@type':
          $items[$key] = 'Place';
          break;
        default:
          $items[$key] = parent::testDefaultValue(2, ' ');
          break;
      }
    }
    return $items;
  }
  /**
   * {@inheritdoc}
   */
  public static function processedTestValue($items) {
    foreach ($items as $key => $value) {
      switch ($key) {
        case 'address':
          $items[$key] = SchemaAddressBase::processedTestValue($items[$key]);
          break;
        case 'geo':
          $items[$key] = SchemaGeoBase::processedTestValue($items[$key]);
          break;
      }
    }
    return $items;
  }
}Members
| 
            Name | 
                  Modifiers | Type | Description | Overrides | 
|---|---|---|---|---|
| 
            MetaNameBase:: | 
                  protected | property | True if the URL value(s) must be absolute. | |
| 
            MetaNameBase:: | 
                  protected | property | A longer explanation of what the field is for. | |
| 
            MetaNameBase:: | 
                  protected | property | The category this meta tag fits in. | |
| 
            MetaNameBase:: | 
                  protected | property | Machine name of the meta tag plugin. | |
| 
            MetaNameBase:: | 
                  protected | property | The title of the plugin. | |
| 
            MetaNameBase:: | 
                  protected | property | True if the tag should use a text area. | |
| 
            MetaNameBase:: | 
                  protected | property | True if more than one is allowed. | |
| 
            MetaNameBase:: | 
                  protected | property | Official metatag name. | 1 | 
| 
            MetaNameBase:: | 
                  protected | property | The attribute this tag uses for the name. | 3 | 
| 
            MetaNameBase:: | 
                  protected | property | Retrieves the currently active request object. | |
| 
            MetaNameBase:: | 
                  protected | property | True if URL must use HTTPS. | |
| 
            MetaNameBase:: | 
                  protected | property | Type of the value being stored. | |
| 
            MetaNameBase:: | 
                  protected | property | The value of the metatag in this instance. | |
| 
            MetaNameBase:: | 
                  public | function | The meta tag's description. | |
| 
            MetaNameBase:: | 
                  public | function | The meta tag group this meta tag belongs to. | |
| 
            MetaNameBase:: | 
                  public | function | Obtain the meta tag's internal ID. | |
| 
            MetaNameBase:: | 
                  public | function | Whether or not this meta tag is active. | |
| 
            MetaNameBase:: | 
                  public | function | Whether or not this meta tag should use a text area. | |
| 
            MetaNameBase:: | 
                  public | function | This meta tag's label. | |
| 
            MetaNameBase:: | 
                  public | function | Whether or not this meta tag supports multiple values. | |
| 
            MetaNameBase:: | 
                  public | function | The meta tag's machine name. | 1 | 
| 
            MetaNameBase:: | 
                  protected | function | Extract any image URLs that might be found in a meta tag. | |
| 
            MetaNameBase:: | 
                  public | function | Whether or not this meta tag must output required absolute URLs. | |
| 
            MetaNameBase:: | 
                  public | function | Whether or not this meta tag must output secure (HTTPS) URLs. | |
| 
            MetaNameBase:: | 
                  private | function | Make the string presentable. | |
| 
            MetaNameBase:: | 
                  public | function | Obtain this meta tag's type. | |
| 
            MetaNameBase:: | 
                  public static | function | Validates the metatag data. | |
| 
            MetaNameBase:: | 
                  public | function | This meta tag's form field's weight. | |
| 
            MetaNameBase:: | 
                  public | function | 
            Constructs a \Drupal\Component\Plugin\PluginBase object. Overrides PluginBase:: | 
                  |
| 
            PluginBase:: | 
                  protected | property | Configuration information passed into the plugin. | 1 | 
| 
            PluginBase:: | 
                  protected | property | The plugin implementation definition. | 1 | 
| 
            PluginBase:: | 
                  protected | property | The plugin_id. | |
| 
            PluginBase:: | 
                  constant | A string which is used to separate base plugin IDs from the derivative ID. | ||
| 
            PluginBase:: | 
                  public | function | 
            Gets the base_plugin_id of the plugin instance. Overrides DerivativeInspectionInterface:: | 
                  |
| 
            PluginBase:: | 
                  public | function | 
            Gets the derivative_id of the plugin instance. Overrides DerivativeInspectionInterface:: | 
                  |
| 
            PluginBase:: | 
                  public | function | 
            Gets the definition of the plugin implementation. Overrides PluginInspectionInterface:: | 
                  3 | 
| 
            PluginBase:: | 
                  public | function | 
            Gets the plugin_id of the plugin instance. Overrides PluginInspectionInterface:: | 
                  |
| 
            PluginBase:: | 
                  public | function | Determines if the plugin is configurable. | |
| 
            SchemaAddressTrait:: | 
                  public | function | The form element. | |
| 
            SchemaNameBase:: | 
                  protected | property | The schemaMetatagManager service. | |
| 
            SchemaNameBase:: | 
                  public static | function | 
            Creates an instance of the plugin. Overrides ContainerFactoryPluginInterface:: | 
                  |
| 
            SchemaNameBase:: | 
                  protected | function | Nested elements that cannot be exploded. | |
| 
            SchemaNameBase:: | 
                  public | function | 
            Generate the HTML tag output for a meta tag. Overrides MetaNameBase:: | 
                  1 | 
| 
            SchemaNameBase:: | 
                  public static | function | 
            Transform input value to its display output. Overrides SchemaMetatagTestTagInterface:: | 
                  2 | 
| 
            SchemaNameBase:: | 
                  protected | function | Parse the image url out of image markup. | |
| 
            SchemaNameBase:: | 
                  public static | function | ||
| 
            SchemaNameBase:: | 
                  protected | function | ||
| 
            SchemaNameBase:: | 
                  public static | function | 
            Explode a test value. Overrides SchemaMetatagTestTagInterface:: | 
                  |
| 
            SchemaNameBase:: | 
                  public | function | Sets schemaMetatagManager service. | |
| 
            SchemaNameBase:: | 
                  public | function | 
            Metatag expects a string value, so serialize any array of values. Overrides MetaNameBase:: | 
                  |
| 
            SchemaNameBase:: | 
                  public static | function | 
            Provide a random test value. Overrides SchemaMetatagTestTagInterface:: | 
                  |
| 
            SchemaNameBase:: | 
                  public | function | 
            The serialized value for the metatag. Overrides MetaNameBase:: | 
                  |
| 
            SchemaNameBase:: | 
                  protected | function | The #states base visibility selector for this element. | |
| 
            SchemaPivotTrait:: | 
                  public | function | The form element. | |
| 
            SchemaPlaceBase:: | 
                  public | function | 
            Generate a form element for this meta tag. Overrides SchemaAddressBase:: | 
                  |
| 
            SchemaPlaceBase:: | 
                  public static | function | 
            Provide a test output value for the input value. Overrides SchemaNameBase:: | 
                  |
| 
            SchemaPlaceBase:: | 
                  public static | function | 
            Provide a test input value for the property that will validate. Overrides SchemaAddressBase:: | 
                  |
| 
            SchemaPlaceTrait:: | 
                  public | function | ||
| 
            SchemaPlaceTrait:: | 
                  abstract protected | function | 
            Return the SchemaMetatagManager. Overrides SchemaAddressTrait:: | 
                  1 | 
| 
            StringTranslationTrait:: | 
                  protected | property | The string translation service. | 1 | 
| 
            StringTranslationTrait:: | 
                  protected | function | Formats a string containing a count of items. | |
| 
            StringTranslationTrait:: | 
                  protected | function | Returns the number of plurals supported by a given language. | |
| 
            StringTranslationTrait:: | 
                  protected | function | Gets the string translation service. | |
| 
            StringTranslationTrait:: | 
                  public | function | Sets the string translation service to use. | 2 | 
| 
            StringTranslationTrait:: | 
                  protected | function | Translates a string to the current language or to a given language. |