function quotes_myquotes in Quotes 6
Same name and namespace in other branches
- 7 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 - Implementation of hook_menu().
File
- ./
quotes.module, line 1420 - 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 theme('quotes_page', $user);
}