tripal_phylogeny.views.inc

  1. 2.x tripal_phylogeny/tripal_phylogeny.views.inc
  2. 3.x legacy/tripal_phylogeny/tripal_phylogeny.views.inc

This file contains the basic functions for views integration of chado/tripal phylogeny tables

File

tripal_phylogeny/tripal_phylogeny.views.inc
View source
  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_phylogeny
  17. */
  18. function tripal_phylogeny_views_handlers() {
  19. return array(
  20. );
  21. }