function asset_wizard_textarea in Asset 6
Same name and namespace in other branches
- 5.2 asset_wizard.module \asset_wizard_textarea()
The #process callback function for the textareas
1 call to asset_wizard_textarea()
- asset_wizard_textfield2 in ./
asset_wizard.module - The #process callback function for the textfield
File
- ./
asset_wizard.module, line 210 - Wizard-style interface for Asset.
Code
function asset_wizard_textarea($element) {
if (_asset_wizard_element_match($element) && _asset_wizard_page_match()) {
$output = theme('asset_wizard_textarea_link', $element);
$element['#suffix'] .= $output;
}
return $element;
}