function scs_node_operations in Simplenews Content Selection 7
Same name and namespace in other branches
- 8 scs.module \scs_node_operations()
 - 7.2 scs.module \scs_node_operations()
 
Implements hook_node_operations().
File
- ./
scs.module, line 86  - Select Drupal content to create a newsletter
 
Code
function scs_node_operations() {
  $operations = array(
    'scs_create' => array(
      'label' => t('Create newsletter'),
      'callback' => NULL,
    ),
  );
  return $operations;
}