You are here

ElevateZoomPlus.php in ElevateZoom Plus 8

Same filename and directory in other branches
  1. 7 src/Entity/ElevateZoomPlus.php

File

src/Entity/ElevateZoomPlus.php
View 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

Namesort descending Description
ElevateZoomPlus Defines the ElevateZoomPlus configuration entity.