DashboardEntityInterface.php in Draggable dashboard 8
Same filename and directory in other branches
Namespace
Drupal\draggable_dashboard\EntityFile
src/Entity/DashboardEntityInterface.phpView source
<?php
namespace Drupal\draggable_dashboard\Entity;
use Drupal\Core\Config\Entity\ConfigEntityInterface;
/**
* Provides an interface for defining Dashboard entities.
*/
interface DashboardEntityInterface extends ConfigEntityInterface {
/**
* Region name for draggable dashboard blocks.
*
* @var string
*/
const BASE_REGION_NAME = 'draggable_dashboard_region';
}
Interfaces
Name | Description |
---|---|
DashboardEntityInterface | Provides an interface for defining Dashboard entities. |