You are here

function extlink_extra_theme in External Links Extra 7

Same name and namespace in other branches
  1. 8 extlink_extra.module \extlink_extra_theme()

Implementation of hook_theme().

File

./extlink_extra.module, line 71
This module adds some extra functionality to the External Links module.

Code

function extlink_extra_theme() {
  return array(
    'extlink_extra_leaving' => array(
      'variables' => array(),
      'template' => 'extlink-extra-leaving',
    ),
  );
}