function hosting_clone_theme in Hosting 6.2
Same name and namespace in other branches
- 7.4 clone/hosting_clone.module \hosting_clone_theme()
- 7.3 clone/hosting_clone.module \hosting_clone_theme()
Implementation of hook_theme().
File
- clone/
hosting_clone.module, line 49 - Allow sites to be cloned.
Code
function hosting_clone_theme($existing, $type, $theme, $path) {
return array(
'hosting_task_clone_form' => array(
'arguments' => array(
'form' => NULL,
),
),
);
}