You are here

function commons_content_moderation_action_info in Drupal Commons 7.3

Implements hook_action_info().

File

modules/commons/commons_content_moderation/commons_content_moderation.module, line 12

Code

function commons_content_moderation_action_info() {
  return array(
    'commons_content_moderation_delete_node_block_user' => array(
      'type' => 'node',
      'label' => t("Delete content and block author's account."),
      'configurable' => FALSE,
      'behavior' => array(
        '',
      ),
      'triggers' => array(
        '',
      ),
    ),
    'commons_content_moderation_delete_comment_block_user' => array(
      'type' => 'comment',
      'label' => t("Delete comment and block author's account."),
      'configurable' => FALSE,
      'behavior' => array(
        '',
      ),
      'triggers' => array(
        '',
      ),
    ),
  );
}