Changeset 848 for trunk/Modules/Export


Ignore:
Timestamp:
Jan 17, 2016, 12:10:35 PM (9 years ago)
Author:
chronos
Message:
  • Renamed: .htaccess file is different for each installation so provide just example in .htacces.sample file.
  • Renamed: File global.php and system.php to first uppercase letter for naming unification.
  • Modified: More translatable strings.
  • Added: Translation group items translatable.
  • Renamed: admin directory is not Application directory where all application related files should be placed.

This is different to includes directory where just general libraries should be placed.
Version.php file should be located in Application directory.

Location:
trunk/Modules/Export
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/Modules/Export/Page.php

    r847 r848  
    481481    //    array('Name' => 'DBCFileName', 'Title' => 'DBC soubor'),
    482482    //    array('Name' => 'LuaFileName', 'Title' => 'Lua soubor'),
    483         array('Name' => '', 'Title' => T('Items of tranlation')),
     483        array('Name' => '', 'Title' => T('Items of translation')),
    484484    );
    485485    $Order = GetOrderTableHeader($TableColumns, 'Name');
     
    511511      $Columns = '';
    512512      foreach($TranslationTree[$Group['Id']]['Items'] as $Column) {
    513         if ($Column['Visible'])  $Columns .= CheckBox('item'.$Column['Id'], !isset($GroupItems[$Column['Id']]), '', 'CheckBox', !$Editable).' '.$Column['Name'].' <br />';
     513        if ($Column['Visible']) $Columns .= CheckBox('item'.$Column['Id'],
     514          !isset($GroupItems[$Column['Id']]), '', 'CheckBox', !$Editable).' '.T($Column['Name']).' <br/>';
    514515      }
    515516      $Checked = $Group['ExportGroupId'] != '';
  • trunk/Modules/Export/ProcessAoWoWExport.php

    r838 r848  
    33ini_set('memory_limit', '100M');
    44
    5 include_once('../../includes/global.php');
     5include_once('../../includes/Global.php');
    66//include_once('../../includes/dbc.php');
    77include_once('Export.php');
  • trunk/Modules/Export/ProcessTask.php

    r838 r848  
    33ini_set('memory_limit', '100M');
    44
    5 include_once(dirname(__FILE__).'/../../includes/global.php');
     5include_once(dirname(__FILE__).'/../../includes/Global.php');
    66include_once(dirname(__FILE__).'/../../includes/zip.lib.php');
    77
  • trunk/Modules/Export/Progress.php

    r838 r848  
    11<?php
    22
    3 include_once(dirname(__FILE__).'/../../includes/global.php');
     3include_once(dirname(__FILE__).'/../../includes/Global.php');
    44
    55$System = new Core();
  • trunk/Modules/Export/cmdmpqexport.php

    r838 r848  
    33ini_set('memory_limit', '100M');
    44
    5 include_once(dirname(__FILE__).'/../../includes/global.php');
     5include_once(dirname(__FILE__).'/../../includes/Global.php');
    66//include_once('../../includes/dbc.php');
    77include_once('Export.php');
Note: See TracChangeset for help on using the changeset viewer.