Changeset 215 for trunk/export/index.php


Ignore:
Timestamp:
Jun 23, 2009, 10:03:53 PM (15 years ago)
Author:
george
Message:
  • Doplněna přípona .sql aktualizačního souboru.
  • Upraveno: Styl kódů nových souborů.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/export/index.php

    r214 r215  
    4545}
    4646
    47 function WriteSetting($ExportSetting) {
    48         echo    '<textarea rows="10" cols="100">'.serialize($ExportSetting).'</textarea><br />'.
     47function WriteSetting($ExportSetting)
     48{
     49        echo('<textarea rows="10" cols="100">'.serialize($ExportSetting).'</textarea><br />'.
    4950        'Odkaz ke stažení s vlastním nastavením: '.
    50         '<a href="?action=output&ExportSetting='.htmlspecialchars(serialize($ExportSetting)).'">Odkaz vlastního exportu</a><br />'.
    51         'I když se nastavení ukládá, pro jistotu si jej můžete uložit nebo poslat příteli.';
    52 }
    53 
    54 if (array_key_exists('ExportSetting',$_GET))
     51        '<a href="?action=output&amp;ExportSetting='.htmlspecialchars(serialize($ExportSetting)).'">Odkaz vlastního exportu</a><br />'.
     52        'I když se nastavení ukládá, pro jistotu si jej můžete uložit nebo poslat příteli.');
     53}
     54
     55if(array_key_exists('ExportSetting', $_GET))
    5556{
    5657        $ExportSetting = unserialize(stripcslashes(stripcslashes($_GET['ExportSetting'])));
     
    350351        }       
    351352   
    352                 if (in_array($ExportSetting['Export'],$Addon_verses)) { //addon pro různé verze
     353                if(in_array($ExportSetting['Export'], $Addon_verses))
     354    { // Addon pro různé verze
    353355                        $Addon_verse = $Addon_verses[array_search($ExportSetting['Export'],$Addon_verses)];
    354356                        if(function_exists('gzcompress')) {
     
    388390        $ExportSetting['language'.$Language['Id']] = array_key_exists('language'.$Language['Id'], $_POST);
    389391   
    390     if (array_key_exists('ExportSetting',$_GET))
    391                 $ExportSetting = unserialize(stripcslashes(stripcslashes($_GET['ExportSetting'])));
     392    if(array_key_exists('ExportSetting', $_GET))
     393                  $ExportSetting = unserialize(stripcslashes(stripcslashes($_GET['ExportSetting'])));
    392394
    393395    echo('<strong>Krok 3. - Typ výstupu</strong><br /><br />');
    394396    echo('<form action="?action=result" method="post"><div>'.
    395           '<table><tr><td>'.
     397            '<table><tr><td>'.
    396398      '<fieldset><legend>Forma výstupu</legend>'.
    397       RadioButton('Export', 'MangosSQLDirect', $ExportSetting['Export'] == 'MangosSQLDirect').'MaNGOS SQL - přímo zobrazit<br />'.
     399    RadioButton('Export', 'MangosSQLDirect', $ExportSetting['Export'] == 'MangosSQLDirect').'MaNGOS SQL - přímo zobrazit<br />'.
    398400          RadioButton('Export', 'MangosSQLCompressed', $ExportSetting['Export'] == 'MangosSQLCompressed').'MaNGOS SQL - komprimovaný soubor<br />'.
    399401          RadioButton('Export', 'AoWoWSQLDirect', $ExportSetting['Export'] == 'AoWoWSQLDirect').'AoWoW SQL - přímo zobrazit<br />'.
Note: See TracChangeset for help on using the changeset viewer.