Czarekplpl Posted November 7, 2016 Share Posted November 7, 2016 Witam. Jak wstawić obrazek do strony konfiguracyjnej modułu? Mam prosty moduł i chciałbym dodać do niego obrazek z instrukcją konfiguracji. Ale nie wiem jak to zrobić. metoda img src mi nie działa Link to comment Share on other sites More sharing options...
endriu107 Posted November 7, 2016 Share Posted November 7, 2016 W php? Nie lepiej w module wywołać sobie plik tpl w którym możesz wstawić co chcesz? Link to comment Share on other sites More sharing options...
design4VIP Posted November 7, 2016 Share Posted November 7, 2016 (edited) mozna tez stworzyc sobie indywidulanego helpera i w nim umiesic odpoweidni kod HTML - to tak gdyby taki element mialby byc w jakis sposob konfigurowalny. Edited November 7, 2016 by design4VIP (see edit history) Link to comment Share on other sites More sharing options...
e_com Posted November 7, 2016 Share Posted November 7, 2016 public function getContent() { $obrazek = '<img src="obrazek.jpg">'; // kod contenta return $obrazek.$this->renderForm(); } Link to comment Share on other sites More sharing options...
west28 Posted November 13, 2016 Share Posted November 13, 2016 (edited) Po co komplikować sobie życie Jak wstawić obrazek w module public function getContent() { /** * If values have been submitted in the form, process. */ if (((bool)Tools::isSubmit('submitMyModule')) == true) { $this->postProcess(); } $this->context->smarty->assign('module_dir', $this->_path); $output = $this->context->smarty->fetch($this->local_path . 'views/templates/admin/configure.tpl'); return $output . $this->renderForm(); } Zatem mamy już plik configure.tpl, w którym wstawiamy: <img src="{$module_dir|escape:'html':'UTF-8'}views/img/obraz.png" /> za całość zamieszania odpowiedzialne są dwie funkcje: $output - czyli to co dodajemy do wygenerowanego formularza $module_dir - czyli zmienna przechowująca ścieżkę do modułu. Podana w poście powyżej metoda nie do końca jest poprawna i nie zadziała na wszystkich serwerach. Pomijam fakt, że również nie jest bezpieczna - nie zawiera walidacji tego pliku, który wczytujemy Edited November 13, 2016 by west28 (see edit history) Link to comment Share on other sites More sharing options...
Czarekplpl Posted November 13, 2016 Author Share Posted November 13, 2016 Super. Wielkie dzięki. Teraz już sobie poradzę. 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