Mercurial > hg > cmmr2012-drupal-site
view vendor/chi-teck/drupal-code-generator/templates/d7/hook/action_info.twig @ 5:12f9dff5fda9 tip
Update to Drupal core 8.7.1
author | Chris Cannam |
---|---|
date | Thu, 09 May 2019 15:34:47 +0100 |
parents | c75dbcec494b |
children |
line wrap: on
line source
/** * Implements hook_action_info(). */ function {{ machine_name }}_action_info() { return array( 'comment_unpublish_action' => array( 'type' => 'comment', 'label' => t('Unpublish comment'), 'configurable' => FALSE, 'behavior' => array('changes_property'), 'triggers' => array('comment_presave', 'comment_insert', 'comment_update'), ), 'comment_unpublish_by_keyword_action' => array( 'type' => 'comment', 'label' => t('Unpublish comment containing keyword(s)'), 'configurable' => TRUE, 'behavior' => array('changes_property'), 'triggers' => array('comment_presave', 'comment_insert', 'comment_update'), ), 'comment_save_action' => array( 'type' => 'comment', 'label' => t('Save comment'), 'configurable' => FALSE, 'triggers' => array('comment_insert', 'comment_update'), ), ); }