function hosting_client_theme in Hostmaster (Aegir) 6
Implementation of hook_theme().
File
- modules/
hosting/ client/ hosting_client.module, line 38
Code
function hosting_client_theme($existing, $type, $theme, $path) {
return array(
'hosting_client_user_form' => array(
'file' => 'hosting_client.access.inc',
'arguments' => array(
'form' => NULL,
),
),
'hosting_client_form' => array(
'file' => 'hosting_client.module',
'arguments' => array(
'form' => NULL,
),
),
);
}