example_element_elements
- Versions
- 5 – 7
example_element_elements()
Implementation of hook_elements().
Code
developer/examples/example_element.module, line 45
<?php
function example_element_elements() {
$type['phonenumber'] = array(
'#input' => TRUE,
'#process' => array('example_element_phonenumber_expand'),
'#element_validate' => array('example_element_phonenumber_validate'),
'#default_value' => array('areacode' => '', 'number' => '', 'extension' => ''),
);
return $type;
}
?>Login or register to post comments 