mirror of
https://github.com/Combodo/iTop.git
synced 2026-08-11 00:08:20 +02:00
20 lines
451 B
PHP
20 lines
451 B
PHP
<?php
|
|
|
|
/**
|
|
* Implement this interface to add sass files (SCSS) to the backoffice pages.
|
|
* example: return "css/setup.scss"
|
|
*
|
|
* @api
|
|
* @package BackofficeUIExtensibilityAPI
|
|
* @since 3.3.0
|
|
*/
|
|
interface iBackofficeSassExtension
|
|
{
|
|
/**
|
|
* @return array An array of relative paths (from loaded import paths) to the files to compile and include
|
|
* @see \iTopWebPage::$a_linked_stylesheets
|
|
* @api
|
|
*/
|
|
public function GetSassRelPaths(): array;
|
|
}
|