You are here

function hosting_clone_theme in Hosting 7.4

Same name and namespace in other branches
  1. 6.2 clone/hosting_clone.module \hosting_clone_theme()
  2. 7.3 clone/hosting_clone.module \hosting_clone_theme()

Implements hook_theme().

File

clone/hosting_clone.module, line 51
Allow sites to be cloned.

Code

function hosting_clone_theme($existing, $type, $theme, $path) {
  return array(
    'hosting_task_clone_form' => array(
      'render element' => 'form',
    ),
  );
}