function hosting_client_theme in Hosting 6.2
Same name and namespace in other branches
- 7.4 client/hosting_client.module \hosting_client_theme()
- 7.3 client/hosting_client.module \hosting_client_theme()
Implementation of hook_theme().
File
- client/
hosting_client.module, line 45
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,
),
),
'hosting_client_platform_access_form' => array(
'file' => 'hosting_client.module',
'arguments' => array(
'form' => NULL,
),
),
);
}