Changed login to be dependent only by login.css
[fa-stable.git] / installed_extensions.php
1 <?php
2
3 /* How to make new entries here
4
5 -- if adding extensions at the beginning of the list, make sure it's index is set to 0 (it has ' 0 => ')
6 -- 'app_file' is the application file name to be put into folder applications
7 -- 'name' is the name of the extension module. Will become the index of the application
8 -- 'title' is the Menu Title
9 -- 'folder' is the folder where the extension files exist
10 -- 'acc_file' is path inside extension folder to optional file with $security_areas/$security_sections extensions 
11 */
12
13 $installed_extensions = array ();
14
15 // example
16 /*
17 $installed_extensions = array (
18         0 => array ('app_file' => 'organizer.php', 'name' => 'organizer', 'title' => 'Organizer', 'folder' => 'organizer',
19         'acc_file'=>'')),
20         array ('app_file' => 'payroll.php', 'name' => 'payroll', 'title' => 'Payroll', 'folder' => 'payroll',
21                 'acc_file'=>'includes/access_exts.inc'));
22 */      
23 ?>