You are here

function record_shorten_theme in Shorten URLs 6

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

Implementation of hook_theme().

File

./record_shorten.module, line 27
Records shortened URLs.

Code

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