Jump to content
  • 0

Dodatkowe SELECt w PrestaShop 1.7


herwaldi

Question

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 by herwaldi (see edit history)
Link to comment
Share on other sites

0 answers to this question

Recommended Posts

There have been no answers to this question yet

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...