18 lines
786 B
PHP
18 lines
786 B
PHP
<?php modal_block_start(); ?>
|
|
<form action="<?php echo st_url_for('@stAllegroPlugin?action=ajaxProductSearch') ?>" class="admin_form" method="post">
|
|
<div class="search-box">
|
|
<?php echo input_tag('product_search[phrase]', null, array(
|
|
'placeholder' => __('Podaj nazwę lub kod produktu (EAN, ISBN itp.)'),
|
|
'size' => 40,
|
|
)); ?>
|
|
<button class="button" type="submit"><?php echo __('Szukaj') ?></button>
|
|
</div>
|
|
<div class="products-container"></div>
|
|
</form>
|
|
<?php modal_block_end("st-allegro-assign-product-modal", __("Wybierz produkt Allegro"), array(
|
|
'trigger' => '#st-allegro-assign-product-modal-trigger',
|
|
'width' => 980,
|
|
'height' => 0,
|
|
));
|
|
|
|
include st_admin_get_template_path(__FILE__);
|