function cdn_theme in CDN 7.2
Same name and namespace in other branches
- 6.2 cdn.module \cdn_theme()
- 6 cdn.module \cdn_theme()
Implements hook_theme().
File
- ./
cdn.module, line 463
Code
function cdn_theme() {
return array(
'cdn_page_stats' => array(
'file' => 'theme.inc',
'variables' => array(
'file_count' => NULL,
'cdn_file_count' => NULL,
'synced_files_per_server_count' => NULL,
'total_time' => NULL,
'synced_files' => NULL,
'unsynced_files' => NULL,
),
),
'cdn_page_stats_file_link' => array(
'file' => 'theme.inc',
'variables' => array(
'file' => NULL,
'absolute_path' => NULL,
'synced' => NULL,
'cdn_url' => NULL,
'server' => NULL,
),
),
);
}