function content_theme_theme in Content Theme 6
Implementation of hook_theme().
File
- ./
content_theme.module, line 138 - This module allows to use different themes than the site default on content creating, editing, and viewing pages.
Code
function content_theme_theme() {
$theme = array();
$theme['content_theme_admin_content_node'] = array(
'arguments' => array(
'form' => NULL,
),
'file' => 'content_theme.admin.inc',
);
$theme['content_theme_admin_content_type'] = array(
'arguments' => array(
'form' => NULL,
),
'file' => 'content_theme.admin.inc',
);
return $theme;
}