tripal_views_integration.module 2.0 KB

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