function example_process_functions in Coder 7.2
Same name and namespace in other branches
- 7 coder_upgrade/tests/old/samples/example.module \example_process_functions()
File
- coder_upgrade/
tests/ old/ samples/ example.module, line 1591
Code
function example_process_functions() {
$form['element'] = array(
'#default_value' => $status,
'#options' => $options,
'#process' => array(
'expand_checkboxes',
'system_modules_disable',
),
);
$form['element'] = array(
'#process' => array(
'form_process_ahah',
),
);
$form['element'] = array(
'#process' => array(
'form_process_weight',
'form_process_ahah',
),
);
$type['image_button'] = array(
'#input' => TRUE,
'#button_type' => 'submit',
'#executes_submit_callback' => TRUE,
'#process' => array(
'form_expand_ahah',
),
'#return_value' => TRUE,
'#has_garbage_value' => TRUE,
'#src' => NULL,
'#size' => 60,
'#maxlength' => 128,
'#autocomplete_path' => FALSE,
'#process' => array(
'form_expand_ahah',
),
);
$type['radios'] = array(
'#input' => TRUE,
'#process' => array(
'expand_radios',
),
);
$type['radio'] = array(
'#input' => TRUE,
'#default_value' => NULL,
'#process' => array(
'form_expand_ahah',
),
);
}