You are here

function constant_contact_edit_list in Constant Contact 6.2

Same name and namespace in other branches
  1. 6.3 admin.lists.inc \constant_contact_edit_list()
  2. 7.3 admin.lists.inc \constant_contact_edit_list()

Displays the manage contact lists page in the admin

1 string reference to 'constant_contact_edit_list'
constant_contact_menu in ./constant_contact.module
Adds an admin menu for the Cnstant Contact module

File

./contactlists.admin.inc, line 63

Code

function constant_contact_edit_list($id) {
  $node = array(
    'id' => $id,
  );
  return drupal_get_form('constant_contact_edit_list_form', $node);
}