You are here

function file_force_theme in File Force Download 7

Same name and namespace in other branches
  1. 6.2 file_force.module \file_force_theme()
  2. 6 file_force.module \file_force_theme()

Implements hook_theme().

File

./file_force.module, line 28
File Force Download module.

Code

function file_force_theme() {
  $theme = array();

  // File field formatters
  $theme['file_force_file_link'] = array(
    'variables' => array(
      'file' => NULL,
      'icon_directory' => NULL,
    ),
    'file' => 'file_force_formatter.inc',
  );
  $theme['file_force_file_formatter_table'] = array(
    'variables' => array(
      'items' => NULL,
    ),
    'file' => 'file_force_formatter.inc',
  );
  return $theme;
}