function signup_edit_page in Signup 6
Same name and namespace in other branches
- 6.2 includes/signup_edit_form.inc \signup_edit_page()
- 7 includes/signup_edit_form.inc \signup_edit_page()
Page handler for the administrator page to edit an existing signup.
Parameters
$signup: The fully-loaded signup object to edit.
Return value
The HTML to use for the signup edit page.
1 string reference to 'signup_edit_page'
- signup_menu in ./
signup.module - Implementation of hook_menu().
File
- includes/
signup_edit_form.inc, line 191 - Code for the form to edit existing signups.
Code
function signup_edit_page($signup) {
drupal_set_title(t('Edit signup'));
return drupal_get_form('signup_edit_form', $signup, 'admin');
}