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