function hook_conditional_fields_alter in Conditional Fields 8
Same name and namespace in other branches
- 4.x conditional_fields.api.php \hook_conditional_fields_alter()
Alter the list of available fields.
Parameters
string &$fields: Fields provided by hook_conditional_fields().
string $entity_type: Name of the entity type being configured.
string $bundle_name: Name of the entity bundle being configured.
string $fields: Fields available to this module, provided by modules that implement hook_conditional_fields().
See also
ConditionalFieldForm::getFields().
conditional_fields_conditional_fields_alter().
1 function implements hook_conditional_fields_alter()
Note: this list is generated by pattern matching, so it may include some functions that are not actually implementations of this hook.
File
- ./
conditional_fields.api.php, line 58 - Hooks for the conditional_fields module.
Code
function hook_conditional_fields_alter(&$fields, $entity_type, $bundle_name) {
asort($fields);
}