You are here

function quotes_user_page in Quotes 7

Same name and namespace in other branches
  1. 5 quotes.user.inc \quotes_user_page()
  2. 6 quotes.user.inc \quotes_user_page()

Displays listing of quotes a user has created on their account page.

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

File

./quotes.user.inc, line 11
Displays a Drupal page containing quotes submitted by a given user.

Code

function quotes_user_page($account) {
  $output = drupal_get_form('quotes_user_form', $account);
  return $output;
}