123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251 |
- <?php
- /**
- * @file
- * Test module for the Entity CRUD API.
- */
- /**
- * Implements hook_entity_presave().
- */
- function entity_crud_hook_test_entity_presave($entity, $type) {
- $_SESSION['entity_crud_hook_test'][] = (__FUNCTION__ . ' called for type ' . $type);
- }
- /**
- * Implements hook_comment_presave().
- */
- function entity_crud_hook_test_comment_presave() {
- $_SESSION['entity_crud_hook_test'][] = (__FUNCTION__ . ' called');
- }
- /**
- * Implements hook_file_presave().
- */
- function entity_crud_hook_test_file_presave() {
- $_SESSION['entity_crud_hook_test'][] = (__FUNCTION__ . ' called');
- }
- /**
- * Implements hook_node_presave().
- */
- function entity_crud_hook_test_node_presave() {
- $_SESSION['entity_crud_hook_test'][] = (__FUNCTION__ . ' called');
- }
- /**
- * Implements hook_taxonomy_term_presave().
- */
- function entity_crud_hook_test_taxonomy_term_presave() {
- $_SESSION['entity_crud_hook_test'][] = (__FUNCTION__ . ' called');
- }
- /**
- * Implements hook_taxonomy_vocabulary_presave().
- */
- function entity_crud_hook_test_taxonomy_vocabulary_presave() {
- $_SESSION['entity_crud_hook_test'][] = (__FUNCTION__ . ' called');
- }
- /**
- * Implements hook_user_presave().
- */
- function entity_crud_hook_test_user_presave() {
- $_SESSION['entity_crud_hook_test'][] = (__FUNCTION__ . ' called');
- }
- /**
- * Implements hook_entity_insert().
- */
- function entity_crud_hook_test_entity_insert($entity, $type) {
- $_SESSION['entity_crud_hook_test'][] = (__FUNCTION__ . ' called for type ' . $type);
- }
- /**
- * Implements hook_comment_insert().
- */
- function entity_crud_hook_test_comment_insert() {
- $_SESSION['entity_crud_hook_test'][] = (__FUNCTION__ . ' called');
- }
- /**
- * Implements hook_file_insert().
- */
- function entity_crud_hook_test_file_insert() {
- $_SESSION['entity_crud_hook_test'][] = (__FUNCTION__ . ' called');
- }
- /**
- * Implements hook_node_insert().
- */
- function entity_crud_hook_test_node_insert() {
- $_SESSION['entity_crud_hook_test'][] = (__FUNCTION__ . ' called');
- }
- /**
- * Implements hook_taxonomy_term_insert().
- */
- function entity_crud_hook_test_taxonomy_term_insert() {
- $_SESSION['entity_crud_hook_test'][] = (__FUNCTION__ . ' called');
- }
- /**
- * Implements hook_taxonomy_vocabulary_insert().
- */
- function entity_crud_hook_test_taxonomy_vocabulary_insert() {
- $_SESSION['entity_crud_hook_test'][] = (__FUNCTION__ . ' called');
- }
- /**
- * Implements hook_user_insert().
- */
- function entity_crud_hook_test_user_insert() {
- $_SESSION['entity_crud_hook_test'][] = (__FUNCTION__ . ' called');
- }
- /**
- * Implements hook_entity_load().
- */
- function entity_crud_hook_test_entity_load(array $entities, $type) {
- $_SESSION['entity_crud_hook_test'][] = (__FUNCTION__ . ' called for type ' . $type);
- }
- /**
- * Implements hook_comment_load().
- */
- function entity_crud_hook_test_comment_load() {
- $_SESSION['entity_crud_hook_test'][] = (__FUNCTION__ . ' called');
- }
- /**
- * Implements hook_file_load().
- */
- function entity_crud_hook_test_file_load() {
- $_SESSION['entity_crud_hook_test'][] = (__FUNCTION__ . ' called');
- }
- /**
- * Implements hook_node_load().
- */
- function entity_crud_hook_test_node_load() {
- $_SESSION['entity_crud_hook_test'][] = (__FUNCTION__ . ' called');
- }
- /**
- * Implements hook_taxonomy_term_load().
- */
- function entity_crud_hook_test_taxonomy_term_load() {
- $_SESSION['entity_crud_hook_test'][] = (__FUNCTION__ . ' called');
- }
- /**
- * Implements hook_taxonomy_vocabulary_load().
- */
- function entity_crud_hook_test_taxonomy_vocabulary_load() {
- $_SESSION['entity_crud_hook_test'][] = (__FUNCTION__ . ' called');
- }
- /**
- * Implements hook_user_load().
- */
- function entity_crud_hook_test_user_load() {
- $_SESSION['entity_crud_hook_test'][] = (__FUNCTION__ . ' called');
- }
- /**
- * Implements hook_entity_update().
- */
- function entity_crud_hook_test_entity_update($entity, $type) {
- $_SESSION['entity_crud_hook_test'][] = (__FUNCTION__ . ' called for type ' . $type);
- }
- /**
- * Implements hook_comment_update().
- */
- function entity_crud_hook_test_comment_update() {
- $_SESSION['entity_crud_hook_test'][] = (__FUNCTION__ . ' called');
- }
- /**
- * Implements hook_file_update().
- */
- function entity_crud_hook_test_file_update() {
- $_SESSION['entity_crud_hook_test'][] = (__FUNCTION__ . ' called');
- }
- /**
- * Implements hook_node_update().
- */
- function entity_crud_hook_test_node_update() {
- $_SESSION['entity_crud_hook_test'][] = (__FUNCTION__ . ' called');
- }
- /**
- * Implements hook_taxonomy_term_update().
- */
- function entity_crud_hook_test_taxonomy_term_update() {
- $_SESSION['entity_crud_hook_test'][] = (__FUNCTION__ . ' called');
- }
- /**
- * Implements hook_taxonomy_vocabulary_update().
- */
- function entity_crud_hook_test_taxonomy_vocabulary_update() {
- $_SESSION['entity_crud_hook_test'][] = (__FUNCTION__ . ' called');
- }
- /**
- * Implements hook_user_update().
- */
- function entity_crud_hook_test_user_update() {
- $_SESSION['entity_crud_hook_test'][] = (__FUNCTION__ . ' called');
- }
- /**
- * Implements hook_entity_delete().
- */
- function entity_crud_hook_test_entity_delete($entity, $type) {
- $_SESSION['entity_crud_hook_test'][] = (__FUNCTION__ . ' called for type ' . $type);
- }
- /**
- * Implements hook_comment_delete().
- */
- function entity_crud_hook_test_comment_delete() {
- $_SESSION['entity_crud_hook_test'][] = (__FUNCTION__ . ' called');
- }
- /**
- * Implements hook_file_delete().
- */
- function entity_crud_hook_test_file_delete() {
- $_SESSION['entity_crud_hook_test'][] = (__FUNCTION__ . ' called');
- }
- /**
- * Implements hook_node_delete().
- */
- function entity_crud_hook_test_node_delete() {
- $_SESSION['entity_crud_hook_test'][] = (__FUNCTION__ . ' called');
- }
- /**
- * Implements hook_taxonomy_term_delete().
- */
- function entity_crud_hook_test_taxonomy_term_delete() {
- $_SESSION['entity_crud_hook_test'][] = (__FUNCTION__ . ' called');
- }
- /**
- * Implements hook_taxonomy_vocabulary_delete().
- */
- function entity_crud_hook_test_taxonomy_vocabulary_delete() {
- $_SESSION['entity_crud_hook_test'][] = (__FUNCTION__ . ' called');
- }
- /**
- * Implements hook_user_delete().
- */
- function entity_crud_hook_test_user_delete() {
- $_SESSION['entity_crud_hook_test'][] = (__FUNCTION__ . ' called');
- }
|