Add Theme::getBackgroundColor and Theme::getThemeColor methods
This commit is contained in:
parent
abe1e37dd9
commit
b9325251e8
6 changed files with 188 additions and 0 deletions
|
@ -14,3 +14,25 @@ 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;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue