function scs_node_operations in Simplenews Content Selection 8
Same name and namespace in other branches
- 7.2 scs.module \scs_node_operations()
- 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;
}