tripal_entities.chado_entity.inc 481 B

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