-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig_lte.php
27 lines (25 loc) · 872 Bytes
/
config_lte.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<?php
//change to FALSE if you want back to appgini default
$LTE_globals =[
"app-title-prefix" => "Composthon | ", //window bar prfix title or browser tab
"logo-mini" => "glyphicon glyphicon-home", //mini logo for sidebar mini 50x50 pixels
"logo-mini-text" => "Composthon", // text for side bar
"navbar-text" => "Les Brickodeurs",
"footer-left-text" => "<strong>LTE © ". date("Y") ." <a href=\"#\">LTE Admin</a>.</strong>",
"footer-right-text" => "Ville de St-Gratien"
];
//changue this for tablename icon
$ico_menu = '{
"Orders":"fa fa-table",
"Gift":"fa fa-gift",
"Pencil":"fa fa-pencil-square-o",
"Cog":"fa fa-cog",
"Plus":"fa fa-plus",
"slash":"fa fa-eye-slash"
}';
function getLteStatus($LTE_enable = true){
if(!function_exists('getMemberInfo')){
$LTE_enable = false;
}
return $LTE_enable ;
}