mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-13 15:34:12 +01:00
20 lines
500 B
PHP
20 lines
500 B
PHP
<?php
|
|
|
|
/**
|
|
* Implement this interface to add script (JS) files to the backoffice pages
|
|
*
|
|
* @see \iTopWebPage::$a_linked_scripts
|
|
* @api
|
|
* @package BackofficeUIExtensibilityAPI
|
|
* @since 3.0.0
|
|
*/
|
|
interface iBackofficeLinkedScriptsExtension
|
|
{
|
|
/**
|
|
* Each script will be included using this property
|
|
* @return array An array of absolute URLs to the files to include
|
|
* @see \iTopWebPage::$a_linked_scripts
|
|
* @api
|
|
*/
|
|
public function GetLinkedScriptsAbsUrls(): array;
|
|
} |