layout = new View('main') ; $this->layout->css = $this->css ; // $this->layout->css = "" ; $this->layout->title = 'Baza danych SQL' ; $this->layout->menu = $this->menu ; // $this->layout->menu = file_get_contents ('template/menu.tpl') ; $this->model = new Model() ; } function listAll() { $this->layout->header = 'Lista wszystkich rekordow' ; $this->view = new View('listAll') ; $this->view->data = $this->model->listAll() ; $this->layout->content = $this->view ; return $this->layout ; } function info ( $text ) { $this->layout->content = $text ; return $this->layout ; } function index () { // $this->layout->content = $text ; return $this->layout ; } } ?>