Had to move applications to main.inc
[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
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         array ('app_file' => 'payroll.php', 'name' => 'payroll', 'title' => 'Payroll', 'folder' => 'payroll')
20         );
21 */      
22 ?>