TripalEntityUIController.inc 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. <?php
  2. /**
  3. * UI controller.
  4. */
  5. class TripalEntityUIController extends EntityDefaultUIController {
  6. /**
  7. * Overrides hook_menu() defaults. Main reason for doing this is that
  8. * parent class hook_menu() is optimized for entity type administration.
  9. */
  10. public function hook_menu() {
  11. $items = array();
  12. // Set this on the object so classes that extend hook_menu() can use it.
  13. $this->id_count = count(explode('/', $this->path));
  14. $wildcard = isset($this->entityInfo['admin ui']['menu wildcard']) ? $this->entityInfo['admin ui']['menu wildcard'] : '%entity_object';
  15. $id_count = count(explode('/', $this->path));
  16. // The content menu.
  17. $items[$this->path] = array(
  18. 'title' => 'Tripal Content',
  19. 'page callback' => 'tripal_entities_content_view',
  20. 'file' => 'includes/tripal_entities.admin.inc',
  21. 'file path' => drupal_get_path('module', 'tripal_entities'),
  22. 'access arguments' => array('administer tripal data'),
  23. 'type' => MENU_LOCAL_TASK,
  24. 'weight' => -9
  25. );
  26. $items['bio-data/add'] = array(
  27. 'title' => 'Add Tripal Content',
  28. 'page callback' => 'tripal_entities_add_page',
  29. 'file' => 'includes/tripal_entities.entity_form.inc',
  30. 'file path' => drupal_get_path('module', 'tripal_entities'),
  31. 'access arguments' => array('administer tripal data'),
  32. );
  33. // Add a menu item for creating each bundle
  34. $bundles = array_keys($this->entityInfo['bundles']);
  35. foreach ($bundles as $bundle_name) {
  36. $matches = array();
  37. if (preg_match('/^bio-data_(.*?)$/', $bundle_name, $matches)) {
  38. $bundle = tripal_load_bundle_entity($bundle_name);
  39. // Get the term for this bundle
  40. $term = entity_load('TripalTerm', array('id' => $matches[1]));
  41. $term = reset($term);
  42. // Set a custom page for adding new tripal data entities.
  43. $items['bio-data/add/' . $term->id] = array(
  44. 'title' => ucfirst($bundle->label),
  45. 'description' => tripal_get_bundle_variable('description', $bundle->id, $term->definition),
  46. 'page callback' => 'drupal_get_form',
  47. 'page arguments' => array('tripal_entities_entity_form', 2),
  48. 'access callback' => 'tripal_entities_entity_access',
  49. 'access arguments' => array('edit'),
  50. 'file' => 'includes/tripal_entities.entity_form.inc',
  51. 'file path' => drupal_get_path('module', 'tripal_entities'),
  52. );
  53. }
  54. }
  55. // Link for viewing a tripal data type.
  56. $items['bio-data/' . $wildcard] = array(
  57. 'title callback' => 'tripal_entities_entity_title',
  58. 'title arguments' => array(1),
  59. 'page callback' => 'tripal_entities_view_entity',
  60. 'page arguments' => array(1),
  61. 'access callback' => 'tripal_entities_entity_access',
  62. 'access arguments' => array('view', 1),
  63. 'type' => MENU_CALLBACK,
  64. );
  65. // 'View' tab for an individual entity page.
  66. $items['bio-data/' . $wildcard . '/view'] = array(
  67. 'title' => 'View',
  68. 'page callback' => 'tripal_entities_view_entity',
  69. 'page arguments' => array(1),
  70. 'access callback' => 'tripal_entities_entity_access',
  71. 'access arguments' => array('view', 1),
  72. 'type' => MENU_DEFAULT_LOCAL_TASK,
  73. 'weight' => -10,
  74. );
  75. // 'Edit' tab for an individual entity page.
  76. $items['bio-data/' . $wildcard . '/edit'] = array(
  77. 'title' => 'Edit',
  78. 'page callback' => 'drupal_get_form',
  79. 'page arguments' => array('tripal_entities_entity_form', NULL, 1),
  80. 'access callback' => 'tripal_entities_entity_access',
  81. 'access arguments' => array('edit', 1),
  82. 'file' => 'includes/tripal_entities.entity_form.inc',
  83. 'file path' => drupal_get_path('module', 'tripal_entities'),
  84. 'type' => MENU_LOCAL_TASK,
  85. 'weight' => -8,
  86. );
  87. // Menu item for deleting tripal data entities.
  88. $items['bio-data/' . $wildcard . '/delete'] = array(
  89. 'title' => 'Delete',
  90. 'page callback' => 'drupal_get_form',
  91. 'page arguments' => array('tripal_entities_entity_delete_form', 1),
  92. 'access callback' => 'tripal_entities_entity_access',
  93. 'access arguments' => array('edit', 1),
  94. 'file' => 'includes/tripal_entities.entity_form.inc',
  95. 'file path' => drupal_get_path('module', 'tripal_entities'),
  96. 'type' => MENU_CALLBACK,
  97. 'weight' => 10,
  98. );
  99. return $items;
  100. }
  101. }
  102. /**
  103. *
  104. * @param unknown $entity
  105. */
  106. function tripal_entity_manage_fields($entity) {
  107. drupal_goto('admin/structure/bio-data/manage/' . $entity->bundle . '/fields');
  108. return '';
  109. }
  110. /**
  111. * Menu callback to display an entity.
  112. *
  113. * As we load the entity for display, we're responsible for invoking a number
  114. * of hooks in their proper order.
  115. *
  116. * @see hook_entity_prepare_view()
  117. * @see hook_entity_view()
  118. * @see hook_entity_view_alter()
  119. */
  120. function tripal_entities_view_entity($entity, $view_mode = 'full') {
  121. $content = '';
  122. $controller = entity_get_controller($entity->type);
  123. $content = $controller->view(array($entity->id => $entity));
  124. drupal_set_title($entity->title);
  125. return $content;
  126. }