Esempio n. 1
0
 function handleRequest()
 {
     $request = new Request();
     $app_c = \woo\base\ApplicationRegistry::appController();
     while ($cmd = $app_c->getCommand($request)) {
         $cmd->execute($request);
     }
     \woo\domain\ObjectWatcher::instance()->performOperations();
     $this->invokeView($app_c->getView($request));
 }
Esempio n. 2
0
 private function addToMap(\woo\domain\DomainObject $obj)
 {
     return \woo\domain\ObjectWatcher::add($obj);
 }