function link_theme in Zircon Profile 8
Same name and namespace in other branches
- 8.0 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,
),
),
);
}