function produktAction() { $oRequest = $this->getRequest(); $iProdukty = $oRequest->getParam('pro_id'); $kategorie = new Kategorie(); $this->view->kategorie = $kategorie->fetchAll(); $iProdukty = $oRequest->getParam('pro_id'); $oProdukty = new Produkty(); $this->view->oProdukty = $oProdukty->find($iProdukty)->current(); $strony = new Strony(); $this->view->strony = $strony->fetchAll(); $wtyczka = new Wtyczka(); $this->view->wtyczka = $wtyczka->pobierzGalerie(); $a = $this->view->wtyczka[0]['online']; $this->view->online = $a; $b = $this->view->wtyczka[0]['odnosnik']; $this->view->odnosnik = $b; }
function kategorieAction() { $oKategorie = new Kategorie(); $this->view->aKategorie = $oKategorie->fetchAll(null, 'kat_nazwa'); }