mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-13 15:34:12 +01:00
20 lines
342 B
PHP
20 lines
342 B
PHP
<?php
|
|
|
|
/**
|
|
* Implement this interface to add sass file (SCSS) to the backoffice pages.
|
|
* example: return "css/setup.scss"
|
|
*
|
|
* @api
|
|
* @package BackofficeUIExtensibilityAPI
|
|
* @since 3.3.0
|
|
*/
|
|
interface iBackofficeSassExtension
|
|
{
|
|
/**
|
|
* @return string
|
|
* @see \iTopWebPage::$a_styles
|
|
* @api
|
|
*/
|
|
public function GetSass(): string;
|
|
}
|