tripal_phylogeny.views.inc 653 B

12345678910111213141516171819202122232425262728
  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. 'info' => array(
  21. 'path' => drupal_get_path('module', 'tripal_phylogeny') . '/views_handlers',
  22. ),
  23. 'handlers' => array(
  24. ),
  25. );
  26. }