function CC_phone_field_settings in Phone Number 7
Same name and namespace in other branches
- 6 includes/API.php \CC_phone_field_settings()
Country field settings. Country can provide additional field settings for the phone number field as needed.
Parameters
$op: The operation to be performed. Possible values:
- "form": Display the field settings form.
- "validate": Check the field settings form for errors.
- "save": Declare which fields to save back to the database.
- "database columns": Declare the columns that content.module should create and manage on behalf of the field. If the field module wishes to handle its own database storage, this should be omitted.
- "filters": Declare the Views filters available for the field. (this is used in CCK's default Views tables definition) They always apply to the first column listed in the "database columns" array.
$field: The field on which the operation is to be performed.
Return value
This varies depending on the operation.
- "form": an array of form elements to add to the settings page.
- "validate": no return value. Use form_set_error().
- "save": an array of names of form elements to be saved in the database.
- "database columns": an array keyed by column name, with arrays of column information as values. This column information must include "type", the MySQL data type of the column, and may also include a "sortable" parameter to indicate to views.module that the column contains ordered information. TODO: Details of other information that can be passed to the database layer can be found in the API for the Schema API.
- "filters": an array of 'filters' definitions as expected by views.module (see Views Documentation). When providing several filters, it is recommended to use the 'name' attribute in order to let the user distinguish between them. If no 'name' is specified for a filter, the key of the filter will be used instead.
File
- includes/
API.php, line 51 - Phone Number custom country API
Code
function CC_phone_field_settings($op, $field) {
switch ($op) {
// Country specific field settings
case 'form':
// ...
return $form;
// Country specific field validation
case 'validate':
// ...
break;
// Country specific field save
case 'save':
// ...
return $settings;
}
}