You are here

function quotes_myquotes in Quotes 7

Same name and namespace in other branches
  1. 6 quotes.module \quotes_myquotes()

Menu callback that generates a list of quotes created by the current user.

1 string reference to 'quotes_myquotes'
quotes_menu in ./quotes.module
Implements hook_menu().

File

./quotes.module, line 1923
The quotes module allows users to maintain a list of quotes that can be displayed in any number of administrator-defined quote blocks.

Code

function quotes_myquotes() {
  global $user;
  return quotes_page($user->uid, $arg2 = NULL);
}