Exemplo n.º 1
0
 function __construct($r)
 {
     parent::__construct($r);
     $this->tablename = 'cmnts';
     $this->addProjection('*');
     $this->more = "order by commentid desc";
 }
Exemplo n.º 2
0
 function __construct($r)
 {
     parent::__construct($r);
     $this->tablename = 'msgs';
     $this->addProjection('*');
     $this->more = "order by msgid desc limit 20";
 }
Exemplo n.º 3
0
 public function __construct($pks = array(), $load = false)
 {
     parent::__construct($this->table, $pks);
     if ($load === true) {
         $this->load();
     }
 }
Exemplo n.º 4
0
 function __construct()
 {
     $this->Browser = new HTTPBrowser();
     $this->Browser->no_cookies();
     $this->CustomerAuth = new CustomerAuth();
     $this->Customer = $this->CustomerAuth->get_sessioned();
     parent::__construct();
 }
Exemplo n.º 5
0
 function __construct()
 {
     parent::__construct();
     $this->tablename = 'eyeds';
 }