sforkowany z mirror/friendica
17 wiersze
543 B
PHP
17 wiersze
543 B
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\Core\System;
|
|
|
|
function quattro_init(App $a) {
|
|
$a->page['htmlhead'] .= '<script src="'.System::baseUrl().'/view/theme/quattro/tinycon.min.js"></script>';
|
|
$a->page['htmlhead'] .= '<script src="'.System::baseUrl().'/view/theme/quattro/js/quattro.js"></script>';;
|
|
}
|