function cck_select_other_element_info in CCK Select Other 7
Implementation of hook_element_info().
File
- ./
cck_select_other.module, line 35 - Implements a select list widget that lets a user provide an alternate option.
Code
function cck_select_other_element_info() {
return array(
'cck_select_other' => array(
'#input' => TRUE,
'#process' => array(
'cck_select_other_process',
),
'#post_render' => array(
'cck_select_other_post_render',
),
'#pre_render' => array(
'cck_select_other_pre_render',
),
),
);
}