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