You are here

function scanner_theme in Search and Replace Scanner 6

Same name and namespace in other branches
  1. 8 scanner.module \scanner_theme()
  2. 7 scanner.module \scanner_theme()

File

./scanner.module, line 110
Search and Replace Scanner - works on all nodes text content.

Code

function scanner_theme() {
  return array(
    'scanner_results' => array(
      'file' => 'scanner.module',
      'arguments' => array(
        'results' => NULL,
      ),
    ),
    'scanner_item' => array(
      'file' => 'scanner.module',
      'arguments' => array(
        'item' => NULL,
      ),
    ),
    'scanner_replace_results' => array(
      'file' => 'scanner.module',
      'arguments' => array(
        'results' => NULL,
      ),
    ),
    'scanner_replace_item' => array(
      'file' => 'scanner.module',
      'arguments' => array(
        'item' => NULL,
      ),
    ),
  );
}