1d94e2866a
- This allows to load the default theme CSS - Theme scripts have been updated to reflect the possibility they will be included in maintenance mode
42 lines
1 KiB
PHP
42 lines
1 KiB
PHP
<?php
|
|
/**
|
|
* Name: Quattro
|
|
* Version: 0.6
|
|
* Author: Fabio <http://kirgroup.com/profile/fabrixxm>
|
|
* Maintainer: Fabio <http://kirgroup.com/profile/fabrixxm>
|
|
* Maintainer: Tobias <https://diekershoff.homeunix.net/friendica/profile/tobias>
|
|
*/
|
|
|
|
use Friendica\App;
|
|
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'] .= '<script src="'.DI::baseUrl().'/view/theme/quattro/tinycon.min.js"></script>';
|
|
DI::page()['htmlhead'] .= '<script src="'.DI::baseUrl().'/view/theme/quattro/js/quattro.js"></script>';;
|
|
}
|
|
|
|
/**
|
|
* @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;
|
|
}
|