ElevateZoomPlus.php in ElevateZoom Plus 8
Same filename and directory in other branches
Namespace
Drupal\elevatezoomplus\EntityFile
src/Entity/ElevateZoomPlus.phpView source
<?php
namespace Drupal\elevatezoomplus\Entity;
use Drupal\blazy\Dejavu\BlazyConfigEntityBase;
/**
* Defines the ElevateZoomPlus configuration entity.
*
* @ConfigEntityType(
* id = "elevatezoomplus",
* label = @Translation("ElevateZoomPlus optionset"),
* list_path = "admin/config/media/elevatezoomplus",
* config_prefix = "optionset",
* entity_keys = {
* "id" = "name",
* "label" = "label",
* "status" = "status",
* "weight" = "weight",
* },
* config_export = {
* "id",
* "name",
* "label",
* "status",
* "weight",
* "options",
* }
* )
*/
class ElevateZoomPlus extends BlazyConfigEntityBase implements ElevateZoomPlusInterface {
}
Classes
Name | Description |
---|---|
ElevateZoomPlus | Defines the ElevateZoomPlus configuration entity. |