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
6 // If you want to change the logo on the login screen, look for the
7 // $login_* variables in config.sass
10 * Should this function be enabled or not?
12 $config['enable'] = false;
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/';
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'] = '/^(.*)-.*$/';
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';