tripal_entities.chado_entity.inc 435 B

123456789101112131415161718192021222324252627282930313233
  1. <?php
  2. /**
  3. *
  4. * Implements hook_entity_load().
  5. */
  6. function tripal_entities_entity_load($entities, $type) {
  7. }
  8. /**
  9. *
  10. * Implements hook_entity_insert().
  11. */
  12. function tripal_entities_entity_insert($entity, $type) {
  13. }
  14. /**
  15. *
  16. * Implements hook_entity_update().
  17. */
  18. function tripal_entities_entity_update($entity, $type) {
  19. }
  20. /**
  21. *
  22. * Implements hook_entity_delete().
  23. */
  24. function tripal_entities_entity_delete($entity, $type) {
  25. }