Exemplo n.º 1
0
 function init()
 {
     $this->view = 'project.show.html';
     $this->uid = $this->getSession('user.id');
     $this->set('uid', $this->uid);
     parent::init();
 }
Exemplo n.º 2
0
 function init()
 {
     $this->view = 'project.new.html';
     $this->db = $this->dbFactory('sqlite:localhost/' . $this->getConf('root.dir') . '/data/project.db');
     $this->uid = $this->getSession('user.id');
     parent::init();
 }