function custom_pub_theme in Custom Publishing Options 6
Same name and namespace in other branches
- 7 custom_pub.module \custom_pub_theme()
Implements hook_theme().
File
- ./
custom_pub.module, line 37 - Adds the ability to add Custom publishing options to the node Add/Edit form.
Code
function custom_pub_theme() {
return array(
'custom_pub_edit_form' => array(
'file' => 'theme.inc',
'path' => drupal_get_path('module', 'custom_pub'),
'arguments' => array(
'form' => array(),
),
),
);
}