Skip to content

Commit

Permalink
added new application help (#44)
Browse files Browse the repository at this point in the history
Provides a help link onto the menu for admin and superadmin
  • Loading branch information
mafoo authored and markjcrane committed Mar 24, 2017
1 parent dac2d07 commit 3094bc6
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
12 changes: 12 additions & 0 deletions help/app_config.php
Original file line number Diff line number Diff line change
@@ -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 changes: 13 additions & 0 deletions help/app_menu.php
Original file line number Diff line number Diff line change
@@ -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";

?>

0 comments on commit 3094bc6

Please sign in to comment.