mirror of
https://github.com/Combodo/iTop.git
synced 2026-09-01 02:48:19 +02:00
15 lines
371 B
PHP
15 lines
371 B
PHP
<?php
|
|
|
|
use Combodo\iTop\Application\UI\Base\Common\Metadata\DataAttributes;
|
|
|
|
/**
|
|
* Allows to provide data attributes to classes that implement this interface.
|
|
* The data attributes will be used to provide additional information to the UI components
|
|
* @api
|
|
* @since 3.3.0
|
|
*/
|
|
interface iDataAttributesProvider
|
|
{
|
|
public function GetDataAttributes(): DataAttributes;
|
|
}
|