mirror of
https://github.com/Combodo/iTop.git
synced 2026-09-01 10:58:23 +02:00
16 lines
365 B
PHP
16 lines
365 B
PHP
<?php
|
|
|
|
use Combodo\iTop\Application\UI\Base\Common\Metadata\AriaAttributes;
|
|
|
|
/**
|
|
* Allows to provide ARIA attributes to classes that implement this interface.
|
|
* The ARIA attributes will be used to improve accessibility of the UI components
|
|
*
|
|
* @api
|
|
* @since 3.3.0
|
|
*/
|
|
interface iAriaAttributesProvider
|
|
{
|
|
public function GetAriaAttributes(): AriaAttributes;
|
|
}
|