app_config.php 1.0 KB

1234567891011121314151617181920212223242526
  1. <?php
  2. //application details
  3. $apps[$x]['name'] = "SQL Query";
  4. $apps[$x]['uuid'] = 'a8b8ca29-083d-fb9b-5552-cc272de18ea6';
  5. $apps[$x]['category'] = 'System';
  6. $apps[$x]['subcategory'] = '';
  7. $apps[$x]['version'] = '';
  8. $apps[$x]['license'] = 'Mozilla Public License 1.1';
  9. $apps[$x]['url'] = 'http://www.fusionpbx.com';
  10. $apps[$x]['description']['en'] = 'Run Structur Query Language commands.';
  11. //menu details
  12. $apps[$x]['menu'][0]['title']['en'] = 'SQL Query';
  13. $apps[$x]['menu'][0]['uuid'] = 'a894fed7-5a17-f695-c3de-e32ce58b3794';
  14. $apps[$x]['menu'][0]['parent_uuid'] = '594d99c5-6128-9c88-ca35-4b33392cec0f';
  15. $apps[$x]['menu'][0]['category'] = 'internal';
  16. $apps[$x]['menu'][0]['path'] = '/app/sql_query/v_sql_query.php';
  17. $apps[$x]['menu'][0]['groups'][] = 'superadmin';
  18. //permission details
  19. $apps[$x]['permissions'][0]['name'] = 'sql_query_execute';
  20. $apps[$x]['permissions'][0]['groups'][] = 'superadmin';
  21. $apps[$x]['permissions'][1]['name'] = 'sql_query_backup';
  22. $apps[$x]['permissions'][1]['groups'][] = 'superadmin';
  23. ?>