1234567891011121314151617181920212223242526272829 |
- <?php
- //application details
- $apps[$x]['name'] = "Zoiper";
- $apps[$x]['uuid'] = "0e1a851b-fa97-43d8-a862-1f78698661d7";
- $apps[$x]['category'] = "Switch";;
- $apps[$x]['subcategory'] = "";
- $apps[$x]['version'] = "";
- $apps[$x]['license'] = "Mozilla Public License 1.1";
- $apps[$x]['url'] = "http://www.fusionpbx.com";
- $apps[$x]['description']['en-us'] = "Zoiper Desktop and Mobile";
- $apps[$x]['description']['es-cl'] = "";
- $apps[$x]['description']['de-de'] = "";
- $apps[$x]['description']['de-ch'] = "";
- $apps[$x]['description']['de-at'] = "";
- $apps[$x]['description']['fr-fr'] = "";
- $apps[$x]['description']['fr-ch'] = "";
- $apps[$x]['description']['pt-pt'] = "";
- $apps[$x]['description']['pt-br'] = "";
- //permission details
- $apps[$x]['permissions'][$y]['name'] = "zoiper";
- $apps[$x]['permissions'][$y]['menu']['uuid'] = "fe8a5b30-834f-4eeb-8462-494ad6034588";
- $apps[$x]['permissions'][$y]['groups'][] = "user";
- $apps[$x]['permissions'][$y]['groups'][] = "admin";
- $apps[$x]['permissions'][$y]['groups'][] = "superadmin";
- $y++;
- ?>
|