Removed dep on API
[ninja.git] / application / config / customlogo.php
blob13abb72ce8957de24091d6d4b0510ce5350996a3
1 <?php defined('SYSPATH') OR die('No direct access allowed.');
3 // The 'custom logo' is what you see in the top left corner when you are
4 // logged into Ninja
5 //
6 // If you want to change the logo on the login screen, look for the
7 // $login_* variables in config.sass
9 /**
10 * Should this function be enabled or not?
12 $config['enable'] = false;
14 /**
15 * Path to where you will store your local customlogo
16 * this should be relative to your icons folder for your view
18 $config['path'] = 'custom_logo/';
20 /**
21 * Pattern to match against, eg if you name a contact
22 * corp-username the pattern should look something like
23 * $config['pattern'] = '/^(.*)-.*$)/';
25 $config['pattern'] = '/^(.*)-.*$/';
27 /**
28 * The default icon to be used if the "custom_logo" is missing
29 * Leave empty if you don't want to display a custom logo for
30 * those who don't have a matching image file
32 $config['default_icon'] = 'icon.png';