function eck_forms in Entity Construction Kit (ECK) 7
Same name and namespace in other branches
- 7.3 eck.module \eck_forms()
- 7.2 eck.module \eck_forms()
File
- ./
eck.module, line 152 - ENTITY CONSTRUCTION KIT
Code
function eck_forms($form_id, $args) {
$forms = array();
if (strpos($form_id, 'entity_table_select_') === 0) {
$forms[$form_id] = array(
'callback' => 'entity_table_select',
);
}
return $forms;
}