N°4693 - Restore API to add saas entries in the backoffice pages

This commit is contained in:
Anne-Cath
2025-07-30 16:41:31 +02:00
parent 4d794fe656
commit 9acc6a8bd4
5 changed files with 40 additions and 0 deletions

View File

@@ -1457,6 +1457,23 @@ interface iBackofficeStyleExtension
public function GetStyle(): string;
}
/**
* Implement this interface to add saas file (SCSS) to the backoffice pages.
* example: return "css/setup.scss"
*
* @api
* @package BackofficeUIExtensibilityAPI
* @since 3.3.0
*/
interface iBackofficeSaasExtension
{
/**
* @api
* @see \iTopWebPage::$a_styles
* @return string
*/
public function GetSaas(): string;
}
/**
* Implement this interface to add Dict entries
*