Browse Source

added new application help (#44)

Provides a help link onto the menu for admin and superadmin
Mafoo 8 years ago
parent
commit
3094bc6537
2 changed files with 25 additions and 0 deletions
  1. 12 0
      help/app_config.php
  2. 13 0
      help/app_menu.php

+ 12 - 0
help/app_config.php

@@ -0,0 +1,12 @@
+<?php
+
+	$apps[$x]['name'] = "Help";
+	$apps[$x]['uuid'] = "9e0e39d0-4b5f-44ef-afc6-648ae121ab15";
+	$apps[$x]['category'] = "Menu";
+	$apps[$x]['subcategory'] = "";
+	$apps[$x]['version'] = "1";
+	$apps[$x]['license'] = "Mozilla Public License 1.1";
+	$apps[$x]['url'] = "http://www.fusionpbx.com";
+	$apps[$x]['description']['en-us'] = "Add help menu items";
+
+?>

+ 13 - 0
help/app_menu.php

@@ -0,0 +1,13 @@
+<?php
+
+	$apps[$x]['menu'][0]['title']['en-us'] = "Help";
+	$apps[$x]['menu'][0]['uuid'] = "00e51f5c-0fb0-11e7-93ae-92361f002671";
+	$apps[$x]['menu'][0]['parent_uuid'] = "";
+	$apps[$x]['menu'][0]['category'] = "external";
+	$apps[$x]['menu'][0]['icon'] = "glyphicon-question-sign";
+	$apps[$x]['menu'][0]['path'] = "http://docs.fusionpbx.com";
+	$apps[$x]['menu'][0]['order'] = "100";
+	$apps[$x]['menu'][0]['groups'][] = "admin";
+	$apps[$x]['menu'][0]['groups'][] = "superadmin";
+
+?>