function _maxlength_content_form_alter in Maxlength 5.2
Same name and namespace in other branches
- 6.2 maxlength.inc \_maxlength_content_form_alter()
- 7 maxlength.inc \_maxlength_content_form_alter()
- 7.2 maxlength.inc \_maxlength_content_form_alter()
1 call to _maxlength_content_form_alter()
- maxlength_form_alter in ./maxlength.module
- Implementation of hook_form_alter().
File
- ./maxlength.module, line 86
Code
function _maxlength_content_form_alter($form_id, &$form) {
$type = $form['type']['#value'];
_maxlength_format_element($form['title'], 'title', 'title', $type);
_maxlength_format_element($form['body_filter']['body'], 'body', 'body', $type);
if (module_exists('content')) {
$list = array_keys(content_fields(NULL, $type));
foreach ($list as $field) {
if (is_array($form[$field])) {
foreach ($form[$field] as $key => $input) {
if (is_array($input['value'])) {
_maxlength_format_element($form[$field][$key]['value'], $field, str_replace('_', '-', $field) . '-' . $key . '-value');
}
}
}
}
}
}