You are here

class DummyFieldProperty in Search API Solr 4.x

Same name and namespace in other branches
  1. 8.3 src/Plugin/search_api/processor/Property/DummyFieldProperty.php \Drupal\search_api_solr\Plugin\search_api\processor\Property\DummyFieldProperty
  2. 8.2 src/Plugin/search_api/processor/Property/DummyFieldProperty.php \Drupal\search_api_solr\Plugin\search_api\processor\Property\DummyFieldProperty

Defines a "dummy field" property.

Hierarchy

Expanded class hierarchy of DummyFieldProperty

See also

\Drupal\search_api_solr\Plugin\search_api\processor\DummyFields

1 file declares its use of DummyFieldProperty
DummyFields.php in src/Plugin/search_api/processor/DummyFields.php

File

src/Plugin/search_api/processor/Property/DummyFieldProperty.php, line 15

Namespace

Drupal\search_api_solr\Plugin\search_api\processor\Property
View source
class DummyFieldProperty extends ConfigurablePropertyBase {
  use StringTranslationTrait;

  /**
   * {@inheritdoc}
   */
  public function defaultConfiguration() {
    return [
      'dummy_value' => 'dummy',
    ];
  }

  /**
   * {@inheritdoc}
   */
  public function buildConfigurationForm(FieldInterface $field, array $form, FormStateInterface $form_state) {
    $configuration = $field
      ->getConfiguration();
    $form['dummy_value'] = [
      '#type' => 'textfield',
      '#title' => $this
        ->t('Dummy value'),
      '#description' => $this
        ->t('The value to be set initially on the dummy field.'),
      '#default_value' => $configuration['dummy_value'],
      '#required' => TRUE,
    ];
    return $form;
  }

}

Members

Namesort descending Modifiers Type Description Overrides
DummyFieldProperty::buildConfigurationForm public function
DummyFieldProperty::defaultConfiguration public function
StringTranslationTrait::$stringTranslation protected property The string translation service. 4
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.