herwaldi Posted September 24, 2019 Share Posted September 24, 2019 (edited) Witam, potrzebuje wprowadzić pewną rzecz w Preście - mianowicie: Posiadam swój moduł, mam w nim hooka w którym mam pole SELECT - wyrzucam sobie w nim pewne dane: public function hookDisplayAdminProductsMainStepRightColumnBottom() { $this->context->smarty->assign(array( 'products' => $products, )); return $this->display(__FILE__, 'views/templates/hook/selector.tpl'); } Następnie printuje go sobie w produkcie - w adminie w danym miejscu: <div class="form-group mb-4" id="arlity"> <h2>Arlity</h2> <div id="select-arlity"> <div id="select-arlity-content"> <select name="arlity" id="arlity"> <option>Wybierz</option> {foreach from=$products item=product} <option value="{$product->code}"> {$product->name} | {$product->code} </option> {/foreach} </select> </div> </div> </div> Teraz chciałbym aby ten mój wybór z pola SELECT zapisał się w bazie - jakieś rady jak to zrobić? Zatkałem się i za bardzo nie wiem jak.. Edited September 24, 2019 by herwaldi (see edit history) Link to comment Share on other sites More sharing options...
Question
herwaldi
Witam,
potrzebuje wprowadzić pewną rzecz w Preście - mianowicie:
Posiadam swój moduł, mam w nim hooka w którym mam pole SELECT - wyrzucam sobie w nim pewne dane:
public function hookDisplayAdminProductsMainStepRightColumnBottom() { $this->context->smarty->assign(array( 'products' => $products, )); return $this->display(__FILE__, 'views/templates/hook/selector.tpl'); }
Następnie printuje go sobie w produkcie - w adminie w danym miejscu:
Teraz chciałbym aby ten mój wybór z pola SELECT zapisał się w bazie - jakieś rady jak to zrobić? Zatkałem się i za bardzo nie wiem jak..
Edited by herwaldi (see edit history)Link to comment
Share on other sites
0 answers to this question
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