class AddURLProperty in Search API 8
Defines an "Item URL" 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\Plugin\search_api\processor\Property\AddURLProperty uses StringTranslationTrait
- class \Drupal\search_api\Processor\ConfigurablePropertyBase implements ConfigurablePropertyInterface
- class \Drupal\search_api\Processor\ProcessorProperty implements ProcessorPropertyInterface
Expanded class hierarchy of AddURLProperty
See also
\Drupal\search_api\Plugin\search_api\processor\AddURL
2 files declare their use of AddURLProperty
- AddURL.php in src/
Plugin/ search_api/ processor/ AddURL.php - AddURLTest.php in tests/
src/ Unit/ Processor/ AddURLTest.php
File
- src/
Plugin/ search_api/ processor/ Property/ AddURLProperty.php, line 15
Namespace
Drupal\search_api\Plugin\search_api\processor\PropertyView source
class AddURLProperty extends ConfigurablePropertyBase {
use StringTranslationTrait;
/**
* {@inheritdoc}
*/
public function defaultConfiguration() {
return [
'absolute' => FALSE,
];
}
/**
* {@inheritdoc}
*/
public function buildConfigurationForm(FieldInterface $field, array $form, FormStateInterface $form_state) {
$configuration = $field
->getConfiguration();
$form['absolute'] = [
'#type' => 'checkbox',
'#title' => $this
->t('Generate absolute URL'),
'#description' => $this
->t('Check this box to pass absolute URLs to the index. This can be useful when indexing multiple sites with a single search index.'),
'#default_value' => $configuration['absolute'] ?? FALSE,
'#return_value' => TRUE,
];
return $form;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
AddURLProperty:: |
public | function |
Constructs a configuration form for a field based on this property. Overrides ConfigurablePropertyInterface:: |
|
AddURLProperty:: |
public | function |
Gets the default configuration for this property. Overrides ConfigurablePropertyBase:: |
|
ConfigurablePropertyBase:: |
public | function |
Retrieves the description for a field based on this property. Overrides ConfigurablePropertyInterface:: |
1 |
ConfigurablePropertyBase:: |
public | function |
Submits a configuration form 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:: |
|
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 |