You are here

function facebook_pull_theme in Facebook Pull 7.2

Same name and namespace in other branches
  1. 6 facebook_pull.module \facebook_pull_theme()
  2. 7.3 facebook_pull.module \facebook_pull_theme()
  3. 7 facebook_pull.module \facebook_pull_theme()

Implementation of hook_theme().

File

./facebook_pull.module, line 22
Default cache time.

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;
}