You are here

function hacked_theme in Hacked! 8.2

Same name and namespace in other branches
  1. 6.2 hacked.module \hacked_theme()
  2. 6 hacked.module \hacked_theme()
  3. 7.2 hacked.module \hacked_theme()

Implementation of the hook_theme() registry.

File

./hacked.module, line 25
The Hacked! module, shows which project have been changed since download.

Code

function hacked_theme() {
  return [
    'hacked_report' => [
      'variables' => [
        'data' => NULL,
      ],
      'file' => 'hacked.report.inc',
    ],
    'hacked_project_summary' => [
      'variables' => [
        'project' => NULL,
      ],
      'file' => 'hacked.report.inc',
    ],
    'hacked_detailed_report' => [
      'variables' => [
        'project' => NULL,
      ],
      'file' => 'hacked.details.inc',
    ],
    'hacked_file_status' => [
      'variables' => [
        'file' => NULL,
      ],
      'file' => 'hacked.details.inc',
    ],
  ];
}