AlkantarClanX12
| Current Path : /var/www/clients/client1/web1/web/modules/comment/tests/ |
| Current File : /var/www/clients/client1/web1/web/modules/comment/tests/comment_hook_test.module |
<?php
/**
* @file
* Test module for the comment hooks testing.
*/
/**
* Implements hook_comment_publish().
*/
function comment_hook_test_comment_publish($comment) {
$_SESSION['comment_hook_test'][] = (__FUNCTION__ . ' called');
}
/**
* Implements hook_comment_unpublish().
*/
function comment_hook_test_comment_unpublish($comment) {
$_SESSION['comment_hook_test'][] = (__FUNCTION__ . ' called');
}