You are here

function twitter_pull_menu in Twitter Pull 7

Same name and namespace in other branches
  1. 7.2 twitter_pull.module \twitter_pull_menu()

Implements hook_menu().

File

./twitter_pull.module, line 28
Twitter Pull module.

Code

function twitter_pull_menu() {
  $items = array();
  $items['twitter_pull_lazy/%'] = array(
    'page callback' => 'twitter_pull_lazy',
    'page arguments' => array(
      1,
    ),
    'access arguments' => array(
      'access content',
    ),
  );
  return $items;
}