X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=view%2Ftheme%2Fquattro%2Ftheme.php;h=df17a7fd9c22d3b73ff40fb4068369d90c26d914;hb=1454f3bc2a3a150ee7cdafb432ab1a7f696128e5;hp=e82b9f2d8f11bddbca6515f9ef6f9626e3ccc2dd;hpb=f2da1c5ab981ad273961eec86a8efdb5e4f01b5c;p=friendica.git diff --git a/view/theme/quattro/theme.php b/view/theme/quattro/theme.php index e82b9f2d8f..df17a7fd9c 100644 --- a/view/theme/quattro/theme.php +++ b/view/theme/quattro/theme.php @@ -8,10 +8,35 @@ */ use Friendica\App; -use Friendica\Core\System; use Friendica\DI; +/* + * This script can be included even when the app is in maintenance mode which requires us to avoid any config call + */ + function quattro_init(App $a) { - DI::page()['htmlhead'] .= ''; - DI::page()['htmlhead'] .= '';; + DI::page()['htmlhead'] .= ''; + DI::page()['htmlhead'] .= '';; +} + +/** + * @param int|null $uid + * @return null + * @see \Friendica\Core\Theme::getBackgroundColor() + * @TODO Implement this function + */ +function quattro_get_background_color(int $uid = null) +{ + return null; +} + +/** + * @param int|null $uid + * @return null + * @see \Friendica\Core\Theme::getThemeColor() + * @TODO Implement this function + */ +function quattro_get_theme_color(int $uid = null) +{ + return null; }