mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-12 23:14:18 +01:00
19 lines
365 B
PHP
19 lines
365 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;
|
|
} |