Update app_config.php
This commit is contained in:
parent
35729fe6a4
commit
8276bc7b37
|
|
@ -21,7 +21,7 @@
|
||||||
$apps[$x]['description']['pt-br'] = "";
|
$apps[$x]['description']['pt-br'] = "";
|
||||||
|
|
||||||
//destination details
|
//destination details
|
||||||
$y = 0;
|
$y=0;
|
||||||
$apps[$x]['destinations'][$y]['type'] = "sql";
|
$apps[$x]['destinations'][$y]['type'] = "sql";
|
||||||
$apps[$x]['destinations'][$y]['label'] = "ring_groups";
|
$apps[$x]['destinations'][$y]['label'] = "ring_groups";
|
||||||
$apps[$x]['destinations'][$y]['name'] = "ring_groups";
|
$apps[$x]['destinations'][$y]['name'] = "ring_groups";
|
||||||
|
|
@ -35,7 +35,7 @@
|
||||||
$apps[$x]['destinations'][$y]['select_label'] = "\${destination} \${name} \${description}";
|
$apps[$x]['destinations'][$y]['select_label'] = "\${destination} \${name} \${description}";
|
||||||
|
|
||||||
//permission details
|
//permission details
|
||||||
$y = 0;
|
$y=0;
|
||||||
$apps[$x]['permissions'][$y]['name'] = "ring_group_view";
|
$apps[$x]['permissions'][$y]['name'] = "ring_group_view";
|
||||||
$apps[$x]['permissions'][$y]['menu']['uuid'] = "b30f085f-3ec6-2819-7e62-53dfba5cb8d5";
|
$apps[$x]['permissions'][$y]['menu']['uuid'] = "b30f085f-3ec6-2819-7e62-53dfba5cb8d5";
|
||||||
$apps[$x]['permissions'][$y]['groups'][] = "superadmin";
|
$apps[$x]['permissions'][$y]['groups'][] = "superadmin";
|
||||||
|
|
@ -98,7 +98,7 @@
|
||||||
$apps[$x]['permissions'][$y]['groups'][] = "admin";
|
$apps[$x]['permissions'][$y]['groups'][] = "admin";
|
||||||
|
|
||||||
//default settings
|
//default settings
|
||||||
$y = 0;
|
$y=0;
|
||||||
$apps[$x]['default_settings'][$y]['default_setting_uuid'] = '745d8fdc-57bc-4f43-97d7-508fda8f70a8';
|
$apps[$x]['default_settings'][$y]['default_setting_uuid'] = '745d8fdc-57bc-4f43-97d7-508fda8f70a8';
|
||||||
$apps[$x]['default_settings'][$y]['default_setting_category'] = 'ring_group';
|
$apps[$x]['default_settings'][$y]['default_setting_category'] = 'ring_group';
|
||||||
$apps[$x]['default_settings'][$y]['default_setting_subcategory'] = 'destination_add_rows';
|
$apps[$x]['default_settings'][$y]['default_setting_subcategory'] = 'destination_add_rows';
|
||||||
|
|
@ -117,9 +117,10 @@
|
||||||
$y++;
|
$y++;
|
||||||
|
|
||||||
//schema details
|
//schema details
|
||||||
$y = 0; //table array index
|
$y=0;
|
||||||
$z = 0; //field array index
|
$apps[$x]['db'][$y]['table']['name'] = "v_ring_groups";
|
||||||
$apps[$x]['db'][$y]['table'] = "v_ring_groups";
|
$apps[$x]['db'][$y]['table']['parent'] = "";
|
||||||
|
$z=0;
|
||||||
$apps[$x]['db'][$y]['fields'][$z]['name'] = "domain_uuid";
|
$apps[$x]['db'][$y]['fields'][$z]['name'] = "domain_uuid";
|
||||||
$apps[$x]['db'][$y]['fields'][$z]['type']['pgsql'] = "uuid";
|
$apps[$x]['db'][$y]['fields'][$z]['type']['pgsql'] = "uuid";
|
||||||
$apps[$x]['db'][$y]['fields'][$z]['type']['sqlite'] = "text";
|
$apps[$x]['db'][$y]['fields'][$z]['type']['sqlite'] = "text";
|
||||||
|
|
@ -208,9 +209,10 @@
|
||||||
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "";
|
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "";
|
||||||
$z++;
|
$z++;
|
||||||
|
|
||||||
$y = 1; //table array index
|
$y++;
|
||||||
$z = 0; //field array index
|
$apps[$x]['db'][$y]['table']['name'] = "v_ring_group_destinations";
|
||||||
$apps[$x]['db'][$y]['table'] = "v_ring_group_destinations";
|
$apps[$x]['db'][$y]['table']['parent'] = "v_ring_groups";
|
||||||
|
$z=0;
|
||||||
$apps[$x]['db'][$y]['fields'][$z]['name'] = "ring_group_destination_uuid";
|
$apps[$x]['db'][$y]['fields'][$z]['name'] = "ring_group_destination_uuid";
|
||||||
$apps[$x]['db'][$y]['fields'][$z]['type']['pgsql'] = "uuid";
|
$apps[$x]['db'][$y]['fields'][$z]['type']['pgsql'] = "uuid";
|
||||||
$apps[$x]['db'][$y]['fields'][$z]['type']['sqlite'] = "text";
|
$apps[$x]['db'][$y]['fields'][$z]['type']['sqlite'] = "text";
|
||||||
|
|
@ -252,9 +254,10 @@
|
||||||
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "";
|
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "";
|
||||||
$z++;
|
$z++;
|
||||||
|
|
||||||
$y = 2; //table array index
|
$y++;
|
||||||
$z = 0; //field array index
|
$apps[$x]['db'][$y]['table']['name'] = "v_ring_group_users";
|
||||||
$apps[$x]['db'][$y]['table'] = "v_ring_group_users";
|
$apps[$x]['db'][$y]['table']['parent'] = "v_ring_groups";
|
||||||
|
$z=0;
|
||||||
$apps[$x]['db'][$y]['fields'][$z]['name']['text'] = "ring_group_user_uuid";
|
$apps[$x]['db'][$y]['fields'][$z]['name']['text'] = "ring_group_user_uuid";
|
||||||
$apps[$x]['db'][$y]['fields'][$z]['type']['pgsql'] = "uuid";
|
$apps[$x]['db'][$y]['fields'][$z]['type']['pgsql'] = "uuid";
|
||||||
$apps[$x]['db'][$y]['fields'][$z]['type']['sqlite'] = "text";
|
$apps[$x]['db'][$y]['fields'][$z]['type']['sqlite'] = "text";
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue