function mass_contact_admin_edit in Mass Contact 6
Same name and namespace in other branches
- 5.2 mass_contact.module \mass_contact_admin_edit()
- 5 mass_contact.module \mass_contact_admin_edit()
- 7 mass_contact.admin.inc \mass_contact_admin_edit()
Displays a form to add or edit a category.
Parameters
form_state: A keyed array containing the current state of the form.
cid: The id of the category to edit. If NULL, then add rather than edit.
Return value
An associative array that defines the form to be built.
1 string reference to 'mass_contact_admin_edit'
- mass_contact_menu in ./
mass_contact.module - Implementation of hook_menu().
File
- ./
mass_contact.module, line 439 - This is the main code file for the Mass Contact module. This module enables users to contact multiple users through selected roles.
Code
function mass_contact_admin_edit($form_state, $cid = NULL) {
$edit = array(
'category' => '',
'recipients' => '',
'selected' => '',
'cid' => '',
);
if (arg(3) == "edit" && $cid > 0) {
$edit = db_fetch_array(db_query("SELECT * FROM {mass_contact} WHERE cid = %d", $cid));
}
$form['category'] = array(
'#type' => 'textfield',
'#title' => t('Category'),
'#maxlength' => 255,
'#default_value' => $edit['category'],
'#description' => t("Will appear in the subject of your e-mail as [category]."),
'#required' => TRUE,
);
// get all roles except anonymous
$allroles = db_query("SELECT rid, name FROM {role} WHERE rid > %d", 1);
while ($roleobj = db_fetch_object($allroles)) {
$onerid = $roleobj->rid;
$onename = $roleobj->name;
$rolesarray[$onerid] = $onename;
}
$form['recipients'] = array(
'#type' => 'checkboxes',
'#title' => t('Roles to receive e-mail'),
'#options' => $rolesarray,
'#default_value' => explode(',', $edit['recipients']),
'#description' => t('These roles will be added to the mailing list. Note: if you check "authenticated users", other roles will not be added, as they will receive the e-mail anyway.'),
);
$form['selected_categories'] = array(
'#type' => 'fieldset',
'#title' => t('Selected categories'),
);
$form['selected_categories']['selected'] = array(
'#type' => 'select',
'#title' => t('Selected'),
'#options' => array(
'0' => t('No'),
'1' => t('Yes'),
),
'#default_value' => $edit['selected'],
'#description' => t('Set this to <em>Yes</em> if you would like this category to be selected by default.'),
);
$form['selected_categories']['reset_selected'] = array(
'#type' => 'checkbox',
'#title' => t('Reset all previously selected categories to <em>No</em>.'),
);
$form['cid'] = array(
'#type' => 'value',
'#value' => $edit['cid'],
);
$form['submit'] = array(
'#type' => 'submit',
'#value' => t('Save'),
);
return $form;
}