You are here

function constant_contact_user_operations in Constant Contact 6.2

Same name and namespace in other branches
  1. 6.3 constant_contact.module \constant_contact_user_operations()
  2. 7.3 constant_contact.module \constant_contact_user_operations()

Alter the bulk user operations option

File

./constant_contact.module, line 519

Code

function constant_contact_user_operations() {
  $operations = array(
    'unsubscribe' => array(
      'label' => t('Unsubscribe the selected users'),
      'callback' => 'constant_contact_user_operations_unsubscribe',
    ),
  );
  return $operations;
}