Add a contact extension number.

This commit is contained in:
Mark Crane
2012-12-09 05:09:22 +00:00
parent c10023156c
commit 8f091c6a3c
2 changed files with 32 additions and 19 deletions

View File

@@ -226,12 +226,15 @@
$z++;
$apps[$x]['db'][$y]['fields'][$z]['name'] = 'phone_type';
$apps[$x]['db'][$y]['fields'][$z]['type'] = 'text';
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = 'Enter the telephone type.';
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = 'Enter the phone type.';
$z++;
$apps[$x]['db'][$y]['fields'][$z]['name'] = 'phone_number';
$apps[$x]['db'][$y]['fields'][$z]['type'] = 'text';
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = 'Enter the telephone number.';
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = 'Enter the phone number.';
$z++;
$apps[$x]['db'][$y]['fields'][$z]['name'] = 'phone_extension';
$apps[$x]['db'][$y]['fields'][$z]['type'] = 'text';
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = 'Enter the extension.';
$y = 3; //table array index
$apps[$x]['db'][$y]['table'] = 'v_contact_notes';