function asset_elements in Asset 5
Same name and namespace in other branches
- 6 inc/modules/asset_content.inc \asset_elements()
Implementation of hook_elements This is where we add the link to textareas
File
- ./
asset.module, line 596
Code
function asset_elements() {
$type['textarea'] = array(
'#process' => array(
'asset_textarea' => array(),
),
);
return $type;
}