grennet Posted October 8, 2014 Share Posted October 8, 2014 Witam. Chcę utworzyć nowy plik php w katalogu głównym, tam gdzie index.php. Nagłówek i stopkę strony pobiorę przez php include, problemem jest zawartość - chcę pobrać samą zawartość strony cms o konkretnym ID i wyświetlić w kodzie php. Chodzi o samą zawartość, to co wpisuje się przy tworzeniu nowej strony CMS w polu zawartości. Czy ma ktoś jakis pomysł na to ?. Bede wdzięczny za podpowiedzi. Pozdrawiam Link to comment Share on other sites More sharing options...
vekia Posted October 8, 2014 Share Posted October 8, 2014 w jakiej wersji prestashop działasz? aby to było wykonane poprawnie - nalezy utworzyć kontroller Link to comment Share on other sites More sharing options...
Piotr Kaczor Posted October 8, 2014 Share Posted October 8, 2014 Offtop alert: Samą treść strony CMS z pominięciem wyglądu szablonu można wyświetlić dodając w adresie ?content_only=1 czyli: presta16.loc/content/3-terms-and-conditions-of-use?content_only=1 1 Link to comment Share on other sites More sharing options...
grennet Posted October 8, 2014 Author Share Posted October 8, 2014 Jest to dokładnie presta 1.6.0.9 Link to comment Share on other sites More sharing options...
vekia Posted October 8, 2014 Share Posted October 8, 2014 w katalogu: controllers/front/ utworz plik: mojController.php utworz w nim kod: class mojControllerCore extends FrontController { public function initContent(){$this->setTemplate(_PS_THEME_DIR_.'moj.tpl'); } } następnie w katalogu z szablonem utworz plik szablonu moj.tploczywiście jest to przyklad, pozostale rzeczy musisz dopisać sam (np. zmienne do smarty ze strona cms)na samym koncu w back office: prefrences > seo & urls dodaj ten kontroller, klikajac w ikone dodania pojawi sie lista rozwijana z mozliwoscia wyboru nowego kontrolera 1 Link to comment Share on other sites More sharing options...
grennet Posted October 8, 2014 Author Share Posted October 8, 2014 Dziękuję to zabieram się do pracy, zobaczę co mi z tego wyjdzie.. Link to comment Share on other sites More sharing options...
grennet Posted October 9, 2014 Author Share Posted October 9, 2014 Wszystko ładnie działa ale dlaczego po utworzeniu kontrolera i podstrony tak jak w tych poprzednich poradach nie ładują się pliki css i tpl modułów z szablonu ? Prosze o pomoc. Link to comment Share on other sites More sharing options...
vekia Posted October 9, 2014 Share Posted October 9, 2014 po utworzeniu kontrolera i podstrony tak jak w tych poprzednich poradach o jakie porady chodzi? Link to comment Share on other sites More sharing options...
grennet Posted October 10, 2014 Author Share Posted October 10, 2014 Na stronach utworzonych przez kontroler nie są ładowane pliki css i tpl modułów Link to comment Share on other sites More sharing options...
vekia Posted October 11, 2014 Share Posted October 11, 2014 o jakie porady chodzi? co dokładnie zrobiłeś? Link to comment Share on other sites More sharing options...
grennet Posted October 12, 2014 Author Share Posted October 12, 2014 Już sobie poradziłem bardzo dziękuję za pomoc w tym temacie. Link to comment Share on other sites More sharing options...
1q2w3e4r Posted March 9, 2015 Share Posted March 9, 2015 (edited) w katalogu: controllers/front/ utworz plik: mojController.php utworz w nim kod: class mojControllerCore extends FrontController { public function initContent(){$this->setTemplate(_PS_THEME_DIR_.'moj.tpl'); } } następnie w katalogu z szablonem utworz plik szablonu moj.tpl oczywiście jest to przyklad, pozostale rzeczy musisz dopisać sam (np. zmienne do smarty ze strona cms) na samym koncu w back office: prefrences > seo & urls dodaj ten kontroller, klikajac w ikone dodania pojawi sie lista rozwijana z mozliwoscia wyboru nowego kontrolera Ta metoda automatycznie wczytuje header i footer. Jak mogę wczytać niestandardowy moj_header.tpl przed moj.tpl zamiast tego standardowego header.tpl? Próbowałem zrobić tak: public function initHeader() { $this->setTemplate(_PS_THEME_DIR_.'start_header.tpl'); } ale niestety zaczyna wtedy sypać błędami: Notice: Undefined index: static_token in /home/user/domains/domena.pl/public_html/tools/smarty/sysplugins/smarty_internal_templatebase.php(157) : eval()'d code on line 44 Notice: Trying to get property of non-object in /home/user/domains/domena.pl/public_html/tools/smarty/sysplugins/smarty_internal_templatebase.php(157) : eval()'d code on line 44 Notice: Undefined index: token in /home/user/domains/domena.pl/public_html/tools/smarty/sysplugins/smarty_internal_templatebase.php(157) : eval()'d code on line 45 coś źle robię? Edited March 9, 2015 by 1q2w3e4r (see edit history) Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now