tripal_phylogeny.views.inc 511 B

1234567891011121314151617181920212223
  1. <?php
  2. /**
  3. * @file
  4. * This file contains the basic functions for views integration of
  5. * chado/tripal phylogeny tables
  6. */
  7. /**
  8. * Implements hook_views_handlers().
  9. *
  10. * Purpose: Register all custom handlers with views
  11. * where a handler describes either "the type of field",
  12. * "how a field should be filtered", "how a field should be sorted"
  13. *
  14. * @return: An array of handler definitions
  15. *
  16. * @ingroup tripal_legacy_phylogeny
  17. */
  18. function tripal_phylogeny_views_handlers() {
  19. return array(
  20. );
  21. }