mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-13 07:24:13 +01:00
19 lines
392 B
PHP
19 lines
392 B
PHP
<?php
|
|
|
|
/**
|
|
* Implement this interface to add Dict entries prefixes
|
|
*
|
|
* @see \iTopWebPage::$a_dict_entries_prefixes
|
|
* @api
|
|
* @package BackofficeUIExtensibilityAPI
|
|
* @since 3.0.0
|
|
*/
|
|
interface iBackofficeDictEntriesPrefixesExtension
|
|
{
|
|
/**
|
|
* @return array
|
|
* @see \iTopWebPage::a_dict_entries_prefixes
|
|
* @api
|
|
*/
|
|
public function GetDictEntriesPrefixes(): array;
|
|
} |