function constant_contact_edit_list in Constant Contact 7.3
Same name and namespace in other branches
- 6.3 admin.lists.inc \constant_contact_edit_list()
- 6.2 contactlists.admin.inc \constant_contact_edit_list()
Displays the manage contact lists page.
1 string reference to 'constant_contact_edit_list'
- constant_contact_menu in ./
constant_contact.module - Implements hook_menu().
File
- ./
admin.lists.inc, line 42 - Manage contact lists.
Code
function constant_contact_edit_list($id) {
$node = array(
'id' => $id,
);
return drupal_get_form('constant_contact_edit_list_form', $node);
}