class FieldTitleSource in Lightgallery 8
Field title source.
Hierarchy
- class \Drupal\lightgallery\Field\FieldBase implements FieldInterface
- class \Drupal\lightgallery\Field\FieldTitleSource
Expanded class hierarchy of FieldTitleSource
2 files declare their use of FieldTitleSource
- LightgalleryFormatter.php in src/
Plugin/ Field/ FieldFormatter/ LightgalleryFormatter.php - LightgalleryManager.php in src/
Manager/ LightgalleryManager.php
File
- src/
Field/ FieldTitleSource.php, line 10
Namespace
Drupal\lightgallery\FieldView source
class FieldTitleSource extends FieldBase {
/**
* {@inheritdoc}
*/
public function appliesToViews() {
return FALSE;
}
/**
* {@inheritdoc}
*/
protected function setDefaultValue() {
return NULL;
}
/**
* {@inheritdoc}
*/
protected function setOptions() {
return [
'Drupal\\lightgallery\\Manager\\LightgalleryManager',
'getImageSourceFields',
];
}
/**
* {@inheritdoc}
*/
protected function setName() {
return 'title_source';
}
/**
* {@inheritdoc}
*/
protected function setTitle() {
return 'Title source';
}
/**
* {@inheritdoc}
*/
protected function setType() {
return FieldTypesEnum::SELECT;
}
/**
* {@inheritdoc}
*/
protected function setDescription() {
return 'The image value that should be used for the title.';
}
/**
* {@inheritdoc}
*/
protected function setGroup() {
return new GroupLightgalleryCore();
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
FieldBase:: |
protected | property | ||
FieldBase:: |
protected | property | ||
FieldBase:: |
protected | property | ||
FieldBase:: |
protected | property | ||
FieldBase:: |
protected | property | ||
FieldBase:: |
protected | property | ||
FieldBase:: |
protected | property | ||
FieldBase:: |
protected | property | ||
FieldBase:: |
public | function |
Returns where the field has to be rendered in field formatter settings. Overrides FieldInterface:: |
3 |
FieldBase:: |
public | function |
Returns field default value. Overrides FieldInterface:: |
|
FieldBase:: |
public | function |
Returns field description. Overrides FieldInterface:: |
|
FieldBase:: |
public | function |
Returns field group (parent). Overrides FieldInterface:: |
|
FieldBase:: |
public | function |
Returns field name. Overrides FieldInterface:: |
|
FieldBase:: |
public | function |
Returns field options callback. Overrides FieldInterface:: |
|
FieldBase:: |
public | function |
Returns field title. Overrides FieldInterface:: |
|
FieldBase:: |
public | function |
Returns field type. Overrides FieldInterface:: |
|
FieldBase:: |
public | function |
Returns if field is required. Overrides FieldInterface:: |
|
FieldBase:: |
protected | function | Sets required flag. | 2 |
FieldBase:: |
public | function | ||
FieldTitleSource:: |
public | function |
Returns where the field has to be rendered in view settings. Overrides FieldBase:: |
|
FieldTitleSource:: |
protected | function |
Sets default value. Overrides FieldBase:: |
|
FieldTitleSource:: |
protected | function |
Sets description. Overrides FieldBase:: |
|
FieldTitleSource:: |
protected | function |
Sets group. Overrides FieldBase:: |
|
FieldTitleSource:: |
protected | function |
Sets name. Overrides FieldBase:: |
|
FieldTitleSource:: |
protected | function |
Sets options. Overrides FieldBase:: |
|
FieldTitleSource:: |
protected | function |
Sets title. Overrides FieldBase:: |
|
FieldTitleSource:: |
protected | function |
Sets type. Overrides FieldBase:: |