tripal_views_integration.module 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. <?php
  2. require_once 'includes/tripal_views_integration.admin.inc';
  3. /**
  4. * Implements hook_views_api()
  5. *
  6. * Purpose: Essentially this hook tells drupal that there is views support for
  7. * for this module which then includes tripal_db.views.inc where all the
  8. * views integration code is
  9. *
  10. * @ingroup tripal_views_integration
  11. */
  12. function tripal_views_integration_views_api() {
  13. return array(
  14. 'api' => 2.0,
  15. );
  16. }
  17. /**
  18. *
  19. * @ingroup tripal_views_integration
  20. */
  21. function tripal_views_integration_menu(){
  22. $items = array();
  23. $items['admin/tripal/tripal_views_integration'] = array(
  24. 'title' => t('Views Integration'),
  25. 'description' => 'Basic Description of Tripal Views Integration Module',
  26. 'page callback' => 'tripal_views_integration_module_description_page',
  27. 'access arguments' => array('administer site configuration'),
  28. 'type' => MENU_NORMAL_ITEM,
  29. );
  30. $items['admin/tripal/tripal_views_integration/list'] = array(
  31. 'title' => t('List of Integrated Views'),
  32. 'description' => t('Tripal Views Setups settings page, allows you to select and create materialized views and chado tables to use for searches.'),
  33. 'page callback' => 'drupal_get_form',
  34. 'page arguments' => array('tripal_views_integration_admin_form'),
  35. 'access arguments' => array('manage tripal_views_integration'),
  36. 'type' => MENU_NORMAL_ITEM,
  37. );
  38. //page to actually create setup->mview->chado table relationships
  39. $items['admin/tripal/tripal_views_integration/new'] = array(
  40. 'title' => 'Integrate a Materialized View',
  41. 'page callback' => 'drupal_get_form',
  42. 'page arguments' => array('tripal_views_integration_new_setup_form'),
  43. 'access arguments' => array('manage tripal_views_integration'), //TODO: figure out the proper permissions arguments
  44. 'type' => MENU_NORMAL_ITEM,
  45. );
  46. return $items;
  47. }
  48. /**
  49. * Set the permission types that the chado module uses. Essentially we
  50. * want permissionis that protect creation, editing and deleting of chado
  51. * data objects
  52. *
  53. * @ingroup tripal_views_integration
  54. */
  55. function tripal_views_integration_perm(){
  56. return array(
  57. 'manage tripal_views_integration',
  58. );
  59. }
  60. /**
  61. *
  62. * @ingroup tripal_views_integration
  63. */
  64. function tripal_views_integration_theme(){
  65. $theme = array();
  66. $theme['tripal_views_integration_new_setup_form'] = array(
  67. 'arguments' => array('form' => NULL),
  68. 'template' => 'tripal_views_integration_fields_form',
  69. );
  70. return $theme;
  71. }