You are here

function _quotes_page in Quotes 5

Menu callback that calls theme_quotes_page().

Parameters

$uid: The user ID of the user's quotes to be displayed.

$arg2: If 'feed', a feed is requested.

Return value

An HTML-formatted list of quotes.

1 string reference to '_quotes_page'
quotes_menu in ./quotes.module
Implementation of hook_menu().

File

./quotes.module, line 1388

Code

function _quotes_page($uid = NULL, $arg2 = NULL) {
  global $user;
  if ($arg2 == 'feed') {
    _quotes_feed_user($uid);
  }
  else {
    return theme('quotes_page', $uid);
  }
}