Zewnętrzne zmienne i pliki, które nie są aktualizowane automatycznie:


* language/pl.php :
    /** Allegro **/
    if ( !defined( 'CUSTOMER_PAGE' ) ) {
        $lang['Allegro_config'] = "Allegro - konfiguracja";
        $lang['Allegro_products'] = "Allegro - produkty";
        $lang['Allegro_Template'] = "Szablon aukcji Allegro";
        $lang['Allegro'] = "Allegro";
        $lang['Allegro_sent'] = "Wystaw na allegro";
        $lang['Allegro_reference'] = 'Id powiązanej kategorii Allegro';
        $lang['Allegro_referenceShop'] = 'Id powiązanej kategorii SKLEPu Allegro';
        $lang['Allegro_cat_select'] = 'Wybierz z listy / Sprawdź nazwę';
        $lang['Allegro_change'] = 'Zmień';
    }

* templates/admin/container.tpl :
	BLOK <!-- BEGIN BODY -->
		<li><a href="?p=allegro-settings">$lang[Allegro_config]</a></li>
        <li><a href="?p=allegro-products">$lang[Allegro_products]</a></li>
        <li><a href="?p=allegro-template">$lang[Allegro_Template]</a></li>
	
* templates/admin/products.tpl :
    BLOK <!-- BEGIN LIST -->
        <a href="?p=allegro-products_form&amp;iProduct=$aData[iProduct]" title="$lang[Allegro_sent]"><img src="allegro/ico_allegro.jpg" alt="" /></a>

    BLOK <!-- BEGIN FORM_MAIN -->
        <input type="button" class="submit" name="sOption" value="$lang[Allegro_sent]" onclick="window.location='admin.php?p=allegro-products_form&amp;iProduct=$aData[iProduct]';" />

* templates/admin/pages.tpl :
    BLOK <!-- BEGIN FORM_MAIN -->
          $("#LinkAllegro").toggle(function(){
            $("#PanelAllegro").show('fast'); setCookie("IsShown_PanelAllegro",1,356); document.getElementById("LinkAllegro").style.backgroundImage="url($config[dir_templates]admin/img/zmniejsz_ico.jpg)";
          },function(){
            $("#PanelAllegro").hide('fast'); setCookie("IsShown_PanelAllegro",0,356); document.getElementById("LinkAllegro").style.backgroundImage="url($config[dir_templates]admin/img/powieksz_ico.jpg)";
          });

      <!-- Allegro start -->
      <tr class="l0">
        <th class="rozwijak">
          <a id="LinkAllegro">$lang[Allegro]</a>
        </th>
      </tr>
      <tr>
        <td class="l1">
          <div id="PanelAllegro" style="display:none;">
            <table class="tab" id="tabAllegro">
              <tr>
                <td>$lang[Allegro_reference]</td>
                <td>
                    <input type="text" name="iCategoryAllegro" value="$aData[iCategoryAllegro]" class="input" size="10" />
                    <a href="admin.php?p=allegro-cats&amp;iCategory=" onclick="window.open(this.href.replace(/\&amp;/, '\&')+document.forms.mainForm['iCategoryAllegro'].value+'&sName='+document.forms.mainForm['sName'].value,'Allegro','status=0, toolbar=0, resizable=1, scrollbars=1, location=0, width=400,height=450, top=40, left=40'); return false;" title="$lang[Allegro_cat_select]">$lang[Allegro_change]</a>
                    <a href="#" onclick="document.forms.mainForm['iCategoryAllegro'].value=''; return false;">$lang[Delete]</a>
                </td>
              </tr>
              <tr>
                <td>$lang[Allegro_referenceShop]</td>
                <td>
                    <input type="text" name="iCategoryAllegroShop" value="$aData[iCategoryAllegroShop]" class="input" maxlength="10" />
                </td>
              </tr>
            </table>
          </div>
        </td>
      </tr>
      <!-- Allegro end -->

* templates/admin/style.css :
    .options { width: 110px; }
    #body form td.options { text-align:center; }


    /* Allegro */
    #body table#configTable.mainTable tr td table tr td.indent  { font-weight: normal; padding-left: 100px; }
    #body table#configTable.mainTable tr td table tr td input.payments_ch { float: left; width: auto; margin: 0 50px 0 50px; }
    #body table#configTable.mainTable tr td table tr td input.payments_t { width: 150px; text-align: right; }
    #body table#configTable.mainTable tr td div.chooseAllegroCategory label { display: inline-block; min-width: 300px; }
    #body table#configTable.mainTable tr td div.chooseAllegroCategory select { margin-left: 10px; min-width: 400px; }
