function hosting_site_theme in Hosting 6.2
Same name and namespace in other branches
- 7.4 site/hosting_site.module \hosting_site_theme()
- 7.3 site/hosting_site.module \hosting_site_theme()
Implements hook_theme().
File
- site/
hosting_site.module, line 83
Code
function hosting_site_theme() {
$items = array();
$items['hosting_site_profile'] = array(
'arguments' => array(
'profile' => NULL,
'html' => FALSE,
),
);
$items['hosting_site_goto_link'] = array(
'arguments' => array(
'title' => NULL,
'url' => NULL,
),
);
return $items;
}