Esempio n. 1
0
File: Crud.php Progetto: hisaboh/w2t
 public function handler(array $urlconf = array())
 {
     if (empty($urlconf)) {
         $urlconf = array("^/(.+?)/create[/]*\$" => "method=do_create", "^/(.+?)/update[/]*\$" => "method=do_update", "^/(.+?)/detail[/]*\$" => "method=do_detail", "^/(.+?)/drop[/]*\$" => "method=do_drop", "^/(.+?)[/]*\$" => "method=do_find", "" => "method=models");
     }
     parent::handler($urlconf);
     return $this;
 }
Esempio n. 2
0
File: index.php Progetto: riaf/ringl
<?php

require dirname(__FILE__) . '/__settings__.php';
import('core.Flow');
import('core.Lib');
import('generic.module.JsOneTimeTicketFilter');
import('Chat');
class ringlTemplateFormatter
{
    function gurl()
    {
        return sprintf(def('chat@gserver'), mt_rand(0, 1000));
    }
}
$flow = new Flow();
$flow->handler(array('^/archives' => 'class=Chat,method=models,template=archive.html', '^/say' => 'class=Chat,method=say', '' => 'class=Chat,method=models,template=index.html'));
$flow->vars('rtf', new ringlTemplateFormatter());
$flow->output();