function comment_hook_info in Drupal 6
Implementation of hook_hook_info().
File
- modules/
comment/ comment.module, line 2008 - Enables users to comment on published content.
Code
function comment_hook_info() {
return array(
'comment' => array(
'comment' => array(
'insert' => array(
'runs when' => t('After saving a new comment'),
),
'update' => array(
'runs when' => t('After saving an updated comment'),
),
'delete' => array(
'runs when' => t('After deleting a comment'),
),
'view' => array(
'runs when' => t('When a comment is being viewed by an authenticated user'),
),
),
),
);
}