You are here

function record_shorten_theme in Shorten URLs 8

Same name and namespace in other branches
  1. 8.2 modules/record_shorten/record_shorten.module \record_shorten_theme()
  2. 6 record_shorten.module \record_shorten_theme()
  3. 7.2 record_shorten.module \record_shorten_theme()
  4. 7 record_shorten.module \record_shorten_theme()

Implements hook_theme().

File

modules/record_shorten/record_shorten.module, line 11
Records shortened URLs.

Code

function record_shorten_theme($existing, $type, $theme, $path) {
  return array(
    'record_shorten_records' => array(
      'variables' => array(),
    ),
  );
}