Contacts: Added Prefix, Middle and Suffix name fields.

This commit is contained in:
Nate Jones
2014-11-22 00:06:38 +00:00
parent 5b2fc71997
commit ba7b2b3a2c
3 changed files with 93 additions and 0 deletions
+12
View File
@@ -169,14 +169,26 @@
$apps[$x]['db'][$y]['fields'][$z]['type'] = "text";
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "Enter the organization.";
$z++;
$apps[$x]['db'][$y]['fields'][$z]['name'] = "contact_name_prefix";
$apps[$x]['db'][$y]['fields'][$z]['type'] = "text";
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "Enter the name prefix.";
$z++;
$apps[$x]['db'][$y]['fields'][$z]['name'] = "contact_name_given";
$apps[$x]['db'][$y]['fields'][$z]['type'] = "text";
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "Enter the given name.";
$z++;
$apps[$x]['db'][$y]['fields'][$z]['name'] = "contact_name_middle";
$apps[$x]['db'][$y]['fields'][$z]['type'] = "text";
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "Enter the middle name.";
$z++;
$apps[$x]['db'][$y]['fields'][$z]['name'] = "contact_name_family";
$apps[$x]['db'][$y]['fields'][$z]['type'] = "text";
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "Enter the family name.";
$z++;
$apps[$x]['db'][$y]['fields'][$z]['name'] = "contact_name_suffix";
$apps[$x]['db'][$y]['fields'][$z]['type'] = "text";
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "Enter the name suffix.";
$z++;
$apps[$x]['db'][$y]['fields'][$z]['name'] = "contact_nickname";
$apps[$x]['db'][$y]['fields'][$z]['type'] = "text";
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "Enter the nickname.";