]> git.mxchange.org Git - friendica.git/blob - view/theme/quattro/theme.php
Update copyright
[friendica.git] / view / theme / quattro / theme.php
1 <?php
2 /**
3  * Name: Quattro
4  * Version: 0.6
5  * Author: Fabio <http://kirgroup.com/profile/fabrixxm>
6  * Maintainer: Fabio <http://kirgroup.com/profile/fabrixxm>
7  * Maintainer: Tobias <https://diekershoff.homeunix.net/friendica/profile/tobias>
8  */
9
10 use Friendica\App;
11 use Friendica\DI;
12
13 function quattro_init(App $a) {
14         DI::page()['htmlhead'] .= '<script src="'.DI::baseUrl().'/view/theme/quattro/tinycon.min.js"></script>';
15         DI::page()['htmlhead'] .= '<script src="'.DI::baseUrl().'/view/theme/quattro/js/quattro.js"></script>';;
16 }
17
18 /**
19  * @param int|null $uid
20  * @return null
21  * @see \Friendica\Core\Theme::getBackgroundColor()
22  * @TODO Implement this function
23  */
24 function quattro_get_background_color(int $uid = null)
25 {
26         return null;
27 }
28
29 /**
30  * @param int|null $uid
31  * @return null
32  * @see \Friendica\Core\Theme::getThemeColor()
33  * @TODO Implement this function
34  */
35 function quattro_get_theme_color(int $uid = null)
36 {
37         return null;
38 }