function uc_file_theme in Ubercart 6.2
Same name and namespace in other branches
- 8.4 uc_file/uc_file.module \uc_file_theme()
- 7.3 uc_file/uc_file.module \uc_file_theme()
Implements hook_theme().
File
- uc_file/
uc_file.module, line 112
Code
function uc_file_theme() {
return array(
'uc_file_downloads_token' => array(
'arguments' => array(
'file_downloads' => NULL,
),
),
'uc_file_admin_files_form_show' => array(
'arguments' => array(
'form' => NULL,
),
'file' => 'uc_file.admin.inc',
),
'uc_file_hook_user_file_downloads' => array(
'arguments' => array(
'form' => NULL,
),
),
'uc_file_user_downloads' => array(
'arguments' => array(
'header' => NULL,
'files' => NULL,
),
'file' => 'uc_file.pages.inc',
),
);
}