function devel_doc_function_form in Devel 6
Same name and namespace in other branches
- 7 devel.module \devel_doc_function_form()
File
- ./
devel.module, line 763
Code
function devel_doc_function_form() {
$version = devel_get_core_version(VERSION);
$form['function'] = array(
'#type' => 'textfield',
'#description' => t('Enter function name for api lookup'),
'#size' => 16,
'#maxlength' => 255,
);
$form['version'] = array(
'#type' => 'value',
'#value' => $version,
);
$form['submit_button'] = array(
'#type' => 'submit',
'#value' => t('Submit'),
);
return $form;
}