function facebook_pull_theme in Facebook Pull 7.3
Same name and namespace in other branches
- 6 facebook_pull.module \facebook_pull_theme()
- 7 facebook_pull.module \facebook_pull_theme()
- 7.2 facebook_pull.module \facebook_pull_theme()
Implements hook_theme().
File
- ./
facebook_pull.module, line 21 - Facebook Pull Module for getting content from Facebook graph.
Code
function facebook_pull_theme($existing, $type, $theme, $path) {
$theme = array(
'facebook_pull_feed' => array(
'variables' => array(
'items' => array(),
),
'template' => 'facebook_pull-feed',
),
'facebook_pull_notes' => array(
'variables' => array(
'feedid' => 0,
'items' => array(),
),
'template' => 'facebook_pull-notes',
),
);
return $theme;
}