New files after 2.1RC merge
[fa-stable.git] / installed_extensions.php
diff --git a/installed_extensions.php b/installed_extensions.php
new file mode 100644 (file)
index 0000000..0022561
--- /dev/null
@@ -0,0 +1,22 @@
+<?php
+
+/* How to make new entries here
+
+-- if adding extensions at the beginning of the list, make sure it's index is set to 0 (it has ' 0 => ')
+-- 'app_file' is the application file name to be put into folder applications
+-- 'name' is the name of the extension module. Will become the index of the application
+-- 'title' is the Menu Title
+-- 'folder' is the folder where the extension files exist
+
+*/
+
+$installed_extensions = array ();
+
+// example
+/*
+$installed_extensions = array (
+       0 => array ('app_file' => 'organizer.php', 'name' => 'organizer', 'title' => 'Organizer', 'folder' => 'organizer'),
+       array ('app_file' => 'payroll.php', 'name' => 'payroll', 'title' => 'Payroll', 'folder' => 'payroll')
+       );
+*/     
+?>
\ No newline at end of file