Lines Matching refs:view
19 protected $view;
23 function __construct(View $view, $rooturl)
25 $this->view = $view;
26 $view->setController($this);
37 return $this->view->TOC($this->sqlite);
45 return $this->view->testTOC($this->sqlite);
48 return $this->view->fileCoverage($this->sqlite, $_GET['file'], $_GET['test']);
50 return $this->view->testTOC($this->sqlite, $_GET['test']);
54 return $this->view->fileLineTOC($this->sqlite, $_GET['file'], $_GET['line']);
56 return $this->view->fileCoverage($this->sqlite, $_GET['file']);
58 return $this->view->TOC($this->sqlite);
88 $this->sqlite = $this->view->getDatabase();
1608 $view = new Web\View;
1610 $controller = new Web\Controller($view, $rooturl);