19 $conf = ConfigurationManager::GetModuleConfiguration($mod);
20
21 // Get action to execute
22 $action = Util::getvalue('action');
23 $controller = $conf['controller'];
24 if (is_callable(array((string)$controller,$action))){
25 call_user_func( array((string)$controller,$action ) );
26 }else{
27 // If the action received does not exists call default view
28 call_user_func(array((string)$controller,'display_default') );
29 }
30 die();
31 }
32 }
33
34 ?>