function hosting_client_theme in Hosting 7.4
Same name and namespace in other branches
- 6.2 client/hosting_client.module \hosting_client_theme()
- 7.3 client/hosting_client.module \hosting_client_theme()
Implements hook_theme().
File
- client/
hosting_client.module, line 48
Code
function hosting_client_theme($existing, $type, $theme, $path) {
return array(
'hosting_client_user_form' => array(
'file' => 'hosting_client.access.inc',
'render element' => 'form',
),
'hosting_client_form' => array(
'file' => 'hosting_client.module',
'render element' => 'form',
),
'hosting_client_platform_access_form' => array(
'file' => 'hosting_client.module',
'render element' => 'form',
),
);
}