drupal_module__wing/WingWorkflowUIController.inc

25 lines
566 B
PHP

<?php
class WingWorkflowUIController extends EntityDefaultUIController {
public function __construct($entity_type, $entity_info) {
dsm(__METHOD__);
parent::__construct($entity_type, $entity_info);
}
// public function __call($method, $args) {
// dsm(func_get_args(), __METHOD__);
// }
public function hook_forms() {
$ret = parent::hook_forms();
dsm(get_defined_vars(), __METHOD__);
return $ret;
}
public function hook_menu() {
$ret = parent::hook_menu();
dsm(get_defined_vars(), __METHOD__);
return $ret;
}
}