You are here

function cdn_theme in CDN 6

Same name and namespace in other branches
  1. 6.2 cdn.module \cdn_theme()
  2. 7.2 cdn.module \cdn_theme()

Implementation of hook_theme().

File

./cdn.module, line 144
Implementation of the core hooks, defines, public and private functions.

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,
      ),
    ),
  );
}