function hook_ds_field_theme_functions_settings_alter in Display Suite 7.2
Alter the field template settings form
Parameters
array $form: The form containing the field settings
array $field_settings: The settings of the field
File
- ./
ds.api.php, line 612 - Hooks provided by Display Suite module.
Code
function hook_ds_field_theme_functions_settings_alter(&$form, $field_settings) {
$form['something'] = array(
'#type' => 'textfield',
'#title' => 'test',
);
}