Dashboard.php in Dashboards with Layout Builder 8
Same filename in this branch
Same filename and directory in other branches
Namespace
Drupal\dashboards\AnnotationFile
src/Annotation/Dashboard.phpView source
<?php
namespace Drupal\dashboards\Annotation;
use Drupal\Component\Annotation\Plugin;
/**
* Defines a Dashboard item annotation object.
*
* @see \Drupal\dashboards\Plugin\DashboardManager
* @see plugin_api
*
* @Annotation
*/
class Dashboard extends Plugin {
/**
* The plugin ID.
*
* @var string
*/
public $id;
/**
* The label of the plugin.
*
* @var \Drupal\Core\Annotation\Translation
*
* @ingroup plugin_translatable
*/
public $label;
/**
* Category of the plugin.
*
* @var \Drupal\Core\Annotation\Translation
*
* @ingroup plugin_translatable
*/
public $category;
}