function follow_theme in Follow 6
Same name and namespace in other branches
- 7.2 follow.module \follow_theme()
- 7 follow.module \follow_theme()
Implementation of hook_theme().
File
- ./
follow.module, line 88 - Allows users to add links to their social network profiles.
Code
function follow_theme() {
$items = array();
$items['follow_links_form'] = array(
'arguments' => array(
'form' => array(),
),
);
$items['follow_links'] = array(
'arguments' => array(
'variables' => array(),
),
);
$items['follow_link'] = array(
'arguments' => array(
'variables' => array(),
),
);
return $items;
}