class SiteNameProperty in Search API Field Map 8.3
Same name and namespace in other branches
- 8 src/Plugin/search_api/processor/Property/SiteNameProperty.php \Drupal\search_api_field_map\Plugin\search_api\processor\Property\SiteNameProperty
- 8.2 src/Plugin/search_api/processor/Property/SiteNameProperty.php \Drupal\search_api_field_map\Plugin\search_api\processor\Property\SiteNameProperty
- 4.x src/Plugin/search_api/processor/Property/SiteNameProperty.php \Drupal\search_api_field_map\Plugin\search_api\processor\Property\SiteNameProperty
Defines a "site name" property.
Hierarchy
- class \Drupal\Core\TypedData\DataDefinition implements \Drupal\Core\TypedData\ArrayAccess, DataDefinitionInterface uses TypedDataTrait
- class \Drupal\search_api\Processor\ProcessorProperty implements ProcessorPropertyInterface
- class \Drupal\search_api\Processor\ConfigurablePropertyBase implements ConfigurablePropertyInterface
- class \Drupal\search_api_field_map\Plugin\search_api\processor\Property\SiteNameProperty uses StringTranslationTrait
- class \Drupal\search_api\Processor\ConfigurablePropertyBase implements ConfigurablePropertyInterface
- class \Drupal\search_api\Processor\ProcessorProperty implements ProcessorPropertyInterface
Expanded class hierarchy of SiteNameProperty
See also
\Drupal\search_api\Plugin\search_api\processor\SiteName
1 file declares its use of SiteNameProperty
- SiteName.php in src/
Plugin/ search_api/ processor/ SiteName.php
File
- src/
Plugin/ search_api/ processor/ Property/ SiteNameProperty.php, line 15
Namespace
Drupal\search_api_field_map\Plugin\search_api\processor\PropertyView source
class SiteNameProperty extends ConfigurablePropertyBase {
use StringTranslationTrait;
/**
* {@inheritdoc}
*/
public function defaultConfiguration() {
return [
'site_name' => [
\Drupal::config('system.site')
->get('name'),
],
];
}
/**
* {@inheritdoc}
*/
public function buildConfigurationForm(FieldInterface $field, array $form, FormStateInterface $form_state) {
$configuration = $field
->getConfiguration();
$form['#attached']['library'][] = 'search_api/drupal.search_api.admin_css';
$form['site_name'] = [
'#type' => 'textfield',
'#title' => $this
->t('Site Name'),
'#description' => $this
->t('The name of the site from which this content originated. This can be useful if indexing multiple sites with a single search index.'),
'#default_value' => $configuration['site_name'],
'#required' => TRUE,
];
if ($this
->useDomain()) {
$form['#tree'] = TRUE;
$form['domain'] = [
'#type' => 'container',
];
$storage = \Drupal::service('entity_type.manager')
->getStorage('domain');
$domains = $storage
->loadMultiple();
foreach ($domains as $domain) {
$form['domain'][$domain
->id()] = [
'#type' => 'textfield',
'#title' => $this
->t('%domain Domain Label', [
'%domain' => $domain
->label(),
]),
'#description' => t('Map the Domain to a custom label for search.'),
'#default_value' => !empty($configuration['domain'][$domain
->id()]) ? $configuration['domain'][$domain
->id()] : $domain
->label(),
'#required' => FALSE,
];
}
$form['site_name']['#title'] = $this
->t('Default site name');
}
return $form;
}
/**
* {@inheritdoc}
*/
public function submitConfigurationForm(FieldInterface $field, array &$form, FormStateInterface $form_state) {
$values = [
'site_name' => $form_state
->getValue('site_name'),
];
if ($domains = $form_state
->getValue('domain')) {
foreach ($domains as $id => $value) {
$values['domain'][$id] = $value;
}
}
$field
->setConfiguration($values);
}
/**
* Whether to use the values from Domain.
*
* @return bool
*/
protected function useDomain() {
return defined('DOMAIN_ADMIN_FIELD');
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
ConfigurablePropertyBase:: |
public | function |
Retrieves the description for a field based on this property. Overrides ConfigurablePropertyInterface:: |
1 |
ConfigurablePropertyBase:: |
public | function |
Validates a configuration form for a field based on this property. Overrides ConfigurablePropertyInterface:: |
|
DataDefinition:: |
protected | property | The array holding values for all definition keys. | |
DataDefinition:: |
public | function |
Adds a validation constraint. Overrides DataDefinitionInterface:: |
|
DataDefinition:: |
public static | function | Creates a new data definition. | 5 |
DataDefinition:: |
public static | function |
Creates a new data definition object. Overrides DataDefinitionInterface:: |
5 |
DataDefinition:: |
public | function |
Returns the class used for creating the typed data object. Overrides DataDefinitionInterface:: |
1 |
DataDefinition:: |
public | function |
Returns a validation constraint. Overrides DataDefinitionInterface:: |
|
DataDefinition:: |
public | function |
Returns an array of validation constraints. Overrides DataDefinitionInterface:: |
1 |
DataDefinition:: |
public | function |
Returns the data type of the data. Overrides DataDefinitionInterface:: |
2 |
DataDefinition:: |
public | function |
Returns a human readable description. Overrides DataDefinitionInterface:: |
|
DataDefinition:: |
public | function |
Returns a human readable label. Overrides DataDefinitionInterface:: |
|
DataDefinition:: |
public | function |
Returns the value of a given setting. Overrides DataDefinitionInterface:: |
2 |
DataDefinition:: |
public | function |
Returns the array of settings, as required by the used class. Overrides DataDefinitionInterface:: |
2 |
DataDefinition:: |
public | function |
Determines whether the data value is computed. Overrides DataDefinitionInterface:: |
|
DataDefinition:: |
public | function |
Determines whether the data value is internal. Overrides DataDefinitionInterface:: |
1 |
DataDefinition:: |
public | function |
Determines whether the data is read-only. Overrides DataDefinitionInterface:: |
|
DataDefinition:: |
public | function |
Determines whether a data value is required. Overrides DataDefinitionInterface:: |
|
DataDefinition:: |
public | function | This is for BC support only. @todo: Remove in https://www.drupal.org/node/1928868. | |
DataDefinition:: |
public | function | This is for BC support only. @todo: Remove in https://www.drupal.org/node/1928868. | |
DataDefinition:: |
public | function | This is for BC support only. @todo: Remove in https://www.drupal.org/node/1928868. | |
DataDefinition:: |
public | function | This is for BC support only. @todo: Remove in https://www.drupal.org/node/1928868. | |
DataDefinition:: |
public | function | Sets the class used for creating the typed data object. | |
DataDefinition:: |
public | function | Sets whether the data is computed. | |
DataDefinition:: |
public | function | Sets an array of validation constraints. | |
DataDefinition:: |
public | function | Sets the data type. | 1 |
DataDefinition:: |
public | function | Sets the human-readable description. | |
DataDefinition:: |
public | function | Sets the whether the data value should be internal. | |
DataDefinition:: |
public | function | Sets the human-readable label. | |
DataDefinition:: |
public | function | Sets whether the data is read-only. | |
DataDefinition:: |
public | function | Sets whether the data is required. | |
DataDefinition:: |
public | function | Sets a definition setting. | 2 |
DataDefinition:: |
public | function | Sets the array of settings, as required by the used class. | 2 |
DataDefinition:: |
public | function | Returns all definition values as array. | |
DataDefinition:: |
public | function | Constructs a new data definition object. | 1 |
DataDefinition:: |
public | function | 2 | |
ProcessorProperty:: |
public | function |
Retrieves the ID of the processor which defines this property. Overrides ProcessorPropertyInterface:: |
|
ProcessorProperty:: |
public | function |
Determines whether this property should be hidden from the UI. Overrides ProcessorPropertyInterface:: |
|
ProcessorProperty:: |
public | function |
Returns whether the data is multi-valued, i.e. a list of data items. Overrides DataDefinition:: |
|
SiteNameProperty:: |
public | function |
Constructs a configuration form for a field based on this property. Overrides ConfigurablePropertyInterface:: |
|
SiteNameProperty:: |
public | function |
Gets the default configuration for this property. Overrides ConfigurablePropertyBase:: |
|
SiteNameProperty:: |
public | function |
Submits a configuration form for a field based on this property. Overrides ConfigurablePropertyBase:: |
|
SiteNameProperty:: |
protected | function | Whether to use the values from Domain. | |
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. | |
TypedDataTrait:: |
protected | property | The typed data manager used for creating the data types. | |
TypedDataTrait:: |
public | function | Gets the typed data manager. | 2 |
TypedDataTrait:: |
public | function | Sets the typed data manager. | 2 |