You are here

trait SchemaAddressTrait in Schema.org Metatag 8

Schema.org PostalAddress trait.

Hierarchy

File

src/Plugin/metatag/Tag/SchemaAddressTrait.php, line 8

Namespace

Drupal\schema_metatag\Plugin\metatag\Tag
View source
trait SchemaAddressTrait {
  use SchemaPivotTrait;

  /**
   * Return the SchemaMetatagManager.
   *
   * @return \Drupal\schema_metatag\SchemaMetatagManager
   *   The Schema Metatag Manager service.
   */
  protected abstract function schemaMetatagManager();

  /**
   * The form element.
   */
  public function postalAddressForm($input_values) {
    $input_values += $this
      ->schemaMetatagManager()
      ->defaultInputValues();
    $value = $input_values['value'];

    // Get the id for the nested @type element.
    $selector = ':input[name="' . $input_values['visibility_selector'] . '[@type]"]';
    $visibility = [
      'invisible' => [
        $selector => [
          'value' => '',
        ],
      ],
    ];
    $selector2 = $this
      ->schemaMetatagManager()
      ->altSelector($selector);
    $visibility2 = [
      'invisible' => [
        $selector2 => [
          'value' => '',
        ],
      ],
    ];
    $visibility['invisible'] = [
      $visibility['invisible'],
      $visibility2['invisible'],
    ];
    $form['#type'] = 'fieldset';
    $form['#title'] = $input_values['title'];
    $form['#description'] = $input_values['description'];
    $form['#tree'] = TRUE;

    // Add a pivot option to the form.
    $form['pivot'] = $this
      ->pivotForm($value);
    $form['pivot']['#states'] = $visibility;
    $form['@type'] = [
      '#type' => 'select',
      '#title' => $this
        ->t('@type'),
      '#default_value' => !empty($value['@type']) ? $value['@type'] : '',
      '#empty_option' => t('- None -'),
      '#empty_value' => '',
      '#options' => [
        'PostalAddress' => $this
          ->t('PostalAddress'),
      ],
      '#required' => $input_values['#required'],
      '#weight' => -10,
    ];
    $form['streetAddress'] = [
      '#type' => 'textfield',
      '#title' => $this
        ->t('streetAddress'),
      '#default_value' => !empty($value['streetAddress']) ? $value['streetAddress'] : '',
      '#maxlength' => 255,
      '#required' => $input_values['#required'],
      '#description' => $this
        ->t("The street address. For example, 1600 Amphitheatre Pkwy."),
      '#states' => $visibility,
    ];
    $form['addressLocality'] = [
      '#type' => 'textfield',
      '#title' => $this
        ->t('addressLocality'),
      '#default_value' => !empty($value['addressLocality']) ? $value['addressLocality'] : '',
      '#maxlength' => 255,
      '#required' => $input_values['#required'],
      '#description' => $this
        ->t("The locality. For example, Mountain View."),
      '#states' => $visibility,
    ];
    $form['addressRegion'] = [
      '#type' => 'textfield',
      '#title' => $this
        ->t('addressRegion'),
      '#default_value' => !empty($value['addressRegion']) ? $value['addressRegion'] : '',
      '#maxlength' => 255,
      '#required' => $input_values['#required'],
      '#description' => $this
        ->t("The region. For example, CA."),
      '#states' => $visibility,
    ];
    $form['postalCode'] = [
      '#type' => 'textfield',
      '#title' => $this
        ->t('postalCode'),
      '#default_value' => !empty($value['postalCode']) ? $value['postalCode'] : '',
      '#maxlength' => 255,
      '#required' => $input_values['#required'],
      '#description' => $this
        ->t('The postal code. For example, 94043.'),
      '#states' => $visibility,
    ];
    $form['addressCountry'] = [
      '#type' => 'textfield',
      '#title' => $this
        ->t('addressCountry'),
      '#default_value' => !empty($value['addressCountry']) ? $value['addressCountry'] : '',
      '#maxlength' => 255,
      '#required' => $input_values['#required'],
      '#description' => $this
        ->t('The country. For example, USA. You can also provide the two-letter ISO 3166-1 alpha-2 country code.'),
      '#states' => $visibility,
    ];
    return $form;
  }

}

Members

Namesort descending Modifiers Type Description Overrides
SchemaAddressTrait::postalAddressForm public function The form element.
SchemaAddressTrait::schemaMetatagManager abstract protected function Return the SchemaMetatagManager. 1
SchemaPivotTrait::pivotForm public function The form element.