function barcode_elements in Barcode 6
Same name and namespace in other branches
- 6.2 barcode.module \barcode_elements()
Implementation of FAPI hook_elements().
File
- ./
barcode.module, line 189
Code
function barcode_elements() {
return array(
'barcode_textfield' => array(
'#input' => TRUE,
'#columns' => array(
'barcode',
'title',
),
//'#delta' => 0,
'#process' => array(
'barcode_process',
),
),
);
}