-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathossn_theme.php
More file actions
22 lines (19 loc) · 800 Bytes
/
ossn_theme.php
File metadata and controls
22 lines (19 loc) · 800 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?php
/**
* OpenSource-SocialNetwork
*
* @package (Informatikon.com).ossn
* @author OSSN Core Team <info@opensource-socialnetwork.com>
* @copyright 2014 iNFORMATIKON TECHNOLOGIES
* @license General Public Licence http://opensource-socialnetwork.com/licence
* @link http://www.opensource-socialnetwork.com/licence
*/
define('__THEMEDIR__', ossn_route()->themes.'ossnfacebook/');
ossn_new_css('ossn.default', 'themes/ossnfacebook/style/default');
ossn_new_css('ossn.admin.default', 'themes/ossnfacebook/style/administrator');
ossn_load_css('ossn.default');
ossn_load_css('ossn.admin.default', 'admin');
ossn_add_hook('css', 'group:background', 'ossntheme_blue_group_background');
function ossntheme_blue_group_background($hook, $type, $return, $params){
return '#FDFDFD';
}