You are here

function scs_node_operations in Simplenews Content Selection 8

Same name and namespace in other branches
  1. 7.2 scs.module \scs_node_operations()
  2. 7 scs.module \scs_node_operations()

Implements hook_node_operations().

File

./scs.module, line 63
General hooks and commonly-used functions

Code

function scs_node_operations() {
  $operations = array(
    'scs_create' => array(
      'label' => t('Create newsletter'),
      'callback' => NULL,
    ),
  );
  return $operations;
}