You are here

DashboardEntityInterface.php in Draggable dashboard 8.2

Same filename and directory in other branches
  1. 8 src/Entity/DashboardEntityInterface.php

File

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

Namesort descending Description
DashboardEntityInterface Provides an interface for defining Dashboard entities.