Update app_config.php (#5019)

This commit is contained in:
chansizzle 2020-01-08 13:10:48 -07:00 committed by FusionPBX
parent ec23bb046d
commit bec0c0f013
1 changed files with 6 additions and 0 deletions

View File

@ -79,6 +79,7 @@
$z++;
$apps[$x]['db'][$y]['fields'][$z]['name'] = "control_name";
$apps[$x]['db'][$y]['fields'][$z]['type'] = "text";
$apps[$x]['db'][$y]['fields'][$z]['search'] = 'true';
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "Enter the conference control name.";
$z++;
$apps[$x]['db'][$y]['fields'][$z]['name'] = "control_enabled";
@ -87,6 +88,7 @@
$z++;
$apps[$x]['db'][$y]['fields'][$z]['name'] = "control_description";
$apps[$x]['db'][$y]['fields'][$z]['type'] = "text";
$apps[$x]['db'][$y]['fields'][$z]['search'] = 'true';
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "Enter the description.";
$y++;
@ -109,18 +111,22 @@
$z++;
$apps[$x]['db'][$y]['fields'][$z]['name'] = "control_digits";
$apps[$x]['db'][$y]['fields'][$z]['type'] = "text";
$apps[$x]['db'][$y]['fields'][$z]['search'] = 'true';
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "Enter the digits.";
$z++;
$apps[$x]['db'][$y]['fields'][$z]['name'] = "control_action";
$apps[$x]['db'][$y]['fields'][$z]['type'] = "text";
$apps[$x]['db'][$y]['fields'][$z]['search'] = 'true';
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "Enter the action.";
$z++;
$apps[$x]['db'][$y]['fields'][$z]['name'] = "control_data";
$apps[$x]['db'][$y]['fields'][$z]['type'] = "text";
$apps[$x]['db'][$y]['fields'][$z]['search'] = 'true';
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "Enter the data.";
$z++;
$apps[$x]['db'][$y]['fields'][$z]['name'] = "control_enabled";
$apps[$x]['db'][$y]['fields'][$z]['type'] = "text";
$apps[$x]['db'][$y]['fields'][$z]['search'] = 'true';
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "Set the status of the control.";
?>