
| Current Path : /var/www/html/rocksensor3/web/modules/contrib/charts/src/Plugin/DataType/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : /var/www/html/rocksensor3/web/modules/contrib/charts/src/Plugin/DataType/ChartConfigData.php |
<?php
namespace Drupal\charts\Plugin\DataType;
use Drupal\Core\StringTranslation\TranslatableMarkup;
use Drupal\Core\TypedData\Attribute\DataType;
use Drupal\Core\TypedData\TypedData;
/**
* Defines the 'chart_config' data type.
*
* This data type represents a chart configuration object,
* which can be used to store and manipulate chart settings.
*/
#[DataType(
id: "chart_config",
label: new TranslatableMarkup("Chart config"),
description: new TranslatableMarkup("A chart configuration")
)]
class ChartConfigData extends TypedData {
/**
* Cached processed value.
*
* @var string
*/
protected $value;
}