class GroupLightgalleryPager in Lightgallery 8
Group light gallery pager.
Hierarchy
- class \Drupal\lightgallery\Group\GroupBase implements GroupInterface
- class \Drupal\lightgallery\Group\GroupLightgalleryPager
Expanded class hierarchy of GroupLightgalleryPager
1 file declares its use of GroupLightgalleryPager
- FieldPager.php in src/
Field/ FieldPager.php
File
- src/
Group/ GroupLightgalleryPager.php, line 10
Namespace
Drupal\lightgallery\GroupView source
class GroupLightgalleryPager extends GroupBase {
/**
* {@inheritdoc}
*/
public function getName() {
return GroupsEnum::LIGHTGALLERY_PAGER;
}
/**
* {@inheritdoc}
*/
public function getTitle() {
return 'Lightgallery pager settings';
}
/**
* {@inheritdoc}
*/
public function getOpenValue() {
/** @var \Drupal\lightgallery\Field\FieldInterface $field */
$field = new FieldPager();
return $field
->getName();
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
GroupBase:: |
public | function |
Boolean indicating if "details" have to be open. Overrides GroupInterface:: |
1 |
GroupLightgalleryPager:: |
public | function |
Returns name. Overrides GroupInterface:: |
|
GroupLightgalleryPager:: |
public | function |
Returns value where "open" property is dependent to. Overrides GroupBase:: |
|
GroupLightgalleryPager:: |
public | function |
Returns title. Overrides GroupInterface:: |