WingWorkflowUIController.inc 566 B

12345678910111213141516171819202122232425
  1. <?php
  2. class WingWorkflowUIController extends EntityDefaultUIController {
  3. public function __construct($entity_type, $entity_info) {
  4. dsm(__METHOD__);
  5. parent::__construct($entity_type, $entity_info);
  6. }
  7. // public function __call($method, $args) {
  8. // dsm(func_get_args(), __METHOD__);
  9. // }
  10. public function hook_forms() {
  11. $ret = parent::hook_forms();
  12. dsm(get_defined_vars(), __METHOD__);
  13. return $ret;
  14. }
  15. public function hook_menu() {
  16. $ret = parent::hook_menu();
  17. dsm(get_defined_vars(), __METHOD__);
  18. return $ret;
  19. }
  20. }