You are here

function hacked_theme in Hacked! 6

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

Implementation of the hook_theme() registry.

File

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

Code

function hacked_theme() {
  return array(
    'hacked_report' => array(
      'arguments' => array(
        'data' => NULL,
      ),
      'file' => 'hacked.theme.inc',
    ),
    'hacked_detailed_report' => array(
      'arguments' => array(
        'data' => NULL,
      ),
      'file' => 'hacked.details.inc',
    ),
  );
}