You are here

function link_theme in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 core/modules/link/link.module \link_theme()

Implements hook_theme().

File

core/modules/link/link.module, line 41
Defines simple link field types.

Code

function link_theme() {
  return array(
    'link_formatter_link_separate' => array(
      'variables' => array(
        'title' => NULL,
        'url_title' => NULL,
        'url' => NULL,
      ),
    ),
  );
}