TripalBundleViewsController.inc 600 B

12345678910111213141516171819202122232425262728
  1. <?php
  2. /**
  3. *
  4. */
  5. class TripalBundleViewsController extends EntityDefaultViewsController {
  6. /**
  7. * Edit or add extra fields to views_data().
  8. */
  9. public function views_data() {
  10. $data = parent::views_data();
  11. // Join the bundle to it's entity.
  12. $data['tripal_bundle']['table']['join']['tripal_entity'] = array(
  13. 'handler' => 'views_join',
  14. 'left_field' => 'bundle',
  15. 'field' => 'name',
  16. );
  17. // This should not be a base table. It's not useful to create a
  18. // view of the bundles.
  19. unset($data['tripal_bundle']['table']['base']);
  20. return $data;
  21. }
  22. }