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