function cdn_theme in CDN 6.2
Same name and namespace in other branches
- 6 cdn.module \cdn_theme()
 - 7.2 cdn.module \cdn_theme()
 
Implementation of hook_theme().
File
- ./
cdn.module, line 372  
Code
function cdn_theme() {
  return array(
    'cdn_page_stats' => array(
      'file' => 'theme.inc',
      'arguments' => 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',
      'arguments' => array(
        'file' => NULL,
      ),
    ),
  );
}