function content_theme in Content Construction Kit (CCK) 6
Same name and namespace in other branches
- 6.3 content.module \content_theme()
- 6.2 content.module \content_theme()
Implementation of hook_theme().
File
- ./
content.module, line 204 - Allows administrators to associate custom fields to content types.
Code
function content_theme() {
$path = drupal_get_path('module', 'content') . '/theme';
return array(
'content_field_view' => array(
'template' => 'field',
'arguments' => array(
'element' => NULL,
),
'path' => $path,
),
'content_admin_field_overview_form' => array(
'arguments' => array(
'form' => NULL,
),
),
'content_admin_display_overview_form' => array(
'arguments' => array(
'form' => NULL,
),
),
'content_admin_field_add_new_field_widget_type' => array(
'arguments' => array(
'form' => NULL,
),
),
'content_view_multiple_field' => array(
'arguments' => array(
'items' => NULL,
'field' => NULL,
'data' => NULL,
),
),
'content_multiple_values' => array(
'arguments' => array(
'element' => NULL,
),
),
);
}