mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-13 15:34:12 +01:00
20 lines
348 B
PHP
20 lines
348 B
PHP
<?php
|
|
|
|
/**
|
|
* Implement this interface to add inline style (CSS) to the backoffice pages' head.
|
|
*
|
|
* @see \iTopWebPage::$a_styles
|
|
* @api
|
|
* @package BackofficeUIExtensibilityAPI
|
|
* @since 3.0.0
|
|
*/
|
|
interface iBackofficeStyleExtension
|
|
{
|
|
/**
|
|
* @return string
|
|
* @see \iTopWebPage::$a_styles
|
|
* @api
|
|
*/
|
|
public function GetStyle(): string;
|
|
}
|