2012-04-13 11:21:15 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Name: Quattro
|
2013-10-22 19:55:36 +02:00
|
|
|
* Version: 0.6
|
2012-04-13 11:21:15 +02:00
|
|
|
* Author: Fabio <http://kirgroup.com/profile/fabrixxm>
|
|
|
|
* Maintainer: Fabio <http://kirgroup.com/profile/fabrixxm>
|
2012-10-19 06:51:45 +02:00
|
|
|
* Maintainer: Tobias <https://diekershoff.homeunix.net/friendica/profile/tobias>
|
2012-04-13 11:21:15 +02:00
|
|
|
*/
|
2012-06-04 11:49:16 +02:00
|
|
|
|
2017-04-30 06:07:00 +02:00
|
|
|
use Friendica\App;
|
2019-12-30 20:02:09 +01:00
|
|
|
use Friendica\DI;
|
2017-04-30 06:07:00 +02:00
|
|
|
|
2017-01-09 13:06:08 +01:00
|
|
|
function quattro_init(App $a) {
|
2019-12-30 23:00:08 +01:00
|
|
|
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>';;
|
2012-06-04 11:49:16 +02:00
|
|
|
}
|
2020-02-19 16:28:57 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @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;
|
|
|
|
}
|