tmgmt_node.ui.inc 734 B

1234567891011121314151617181920212223242526272829303132333435
  1. <?php
  2. /**
  3. * @file
  4. * Provides the node source ui controller.
  5. */
  6. class TMGMTNodeSourceUIController extends TMGMTDefaultSourceUIController {
  7. /**
  8. * {@inheritdoc}
  9. */
  10. public function hook_menu() {
  11. // The node source overview is a View using Views Bulk Operations. Therefore
  12. // we don't need to provide any menu items.
  13. return array();
  14. }
  15. /**
  16. * {@inheritdoc}
  17. */
  18. public function hook_forms() {
  19. // The node source overview is a View using Views Bulk Operations. Therefore
  20. // we don't need to provide any forms.
  21. return array();
  22. }
  23. /**
  24. * {@inheritdoc}
  25. */
  26. public function hook_views_default_views() {
  27. return _tmgmt_load_exports('tmgmt_node', 'views', 'view.inc', 'view');
  28. }
  29. }