Changeset 806


Ignore:
Timestamp:
May 25, 2014, 12:14:02 AM (10 years ago)
Author:
chronos
Message:
  • Modified: Files in Module directory should not be directly showing any web content. They need to register custom Page descendent class.
Location:
trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/Modules/Translation/Form.php

    r752 r806  
    203203                                        $Output .= '</td></tr>';
    204204       
    205           //todo javascritp
     205          //todo javascript
    206206       
    207207            $Output .= '<script src="http://code.jquery.com/jquery-latest.js"></script>'.
     
    209209          $Output .=    '$(document).ready(function() {';
    210210                                        foreach($TranslationTree[$GroupId]['Items'] as $Index => $TextItem)
    211             $Output .=   '$("#'.$TextItem['Column'].'").load("'.$this->System->Link('/Modules/Translation/LoadNames.php?ID='.$LineAJ['ID'].'&Column='.$TextItem['Column'].'&GroupId='.$GroupId).'");';
     211            $Output .=   '$("#'.$TextItem['Column'].'").load("'.$this->System->Link('/LoadNames.php?ID='.$LineAJ['ID'].'&Column='.$TextItem['Column'].'&GroupId='.$GroupId).'");';
    212212         
    213213          $Output .= '});'.
     
    238238             
    239239              $Output .= '<table class="BaseTable">'.
    240                                             '<tr><th>Translátor:</th><th>Nepřeložené</th><th>Přeložené</th>';
     240                                            '<tr><th>Překladač:</th><th>Nepřeložené</th><th>Přeložené</th>';
    241241                                          foreach($TranslationTree[$GroupId]['Items'] as $Index => $TextItem)
    242242                                                  if($TextItem['Visible'] == 1)
  • trunk/Modules/Translation/LoadNames.php

    r764 r806  
    11<?php
    2 include_once(dirname(__FILE__).'/../../includes/global.php');
    3  
    4   $System = new System();
    5   $System->DoNotShowPage = true;
    6   $System->Run();
    7  
    8  
    92
    10   function ReplaceTranslated($orig,$tran,$Text,$ID,$Group) {
    11      global $System;
    12          $tran_replace = str_replace(' ','&nbsp;',htmlspecialchars($tran));
    13          $orig_replace = str_replace(' ','&nbsp;',htmlspecialchars($orig));
     3class PageLoadNames extends Page
     4{
     5  function ReplaceTranslated($orig,$tran,$Text,$ID,$Group)
     6  {
     7    $tran_replace = str_replace(' ','&nbsp;',htmlspecialchars($tran));
     8    $orig_replace = str_replace(' ','&nbsp;',htmlspecialchars($orig));
    149
    15        //  if (strlen($orig) < strlen($Text)-1) {
    16                                   if ($Group <> '') {
    17               $Text = str_replace(' '.$orig,' <span Title="Přelož jako:&nbsp;'.$tran_replace.'" class="edit"><a class="edit" target="_NEW2" href="'.$System->Link('/form.php?group='.$Group.'&amp;ID='.$ID).'">'.$orig_replace.'</a></span>',$Text);
    18             } else { 
    19               $Text = str_replace(' '.$orig,' <span Title="Přelož jako:&nbsp;'.$tran_replace.'" class="edit"><a class="edit" target="_NEW2" href="'.$System->Link('/dictionary/?search='.$tran).'">'.$orig_replace.'</a></span>',$Text);
    20             }
    21                         //       }
    22          return ($Text);
     10    //  if (strlen($orig) < strlen($Text)-1) {
     11    if ($Group <> '')
     12    {
     13      $Text = str_replace(' '.$orig,' <span Title="Přelož jako:&nbsp;'.$tran_replace.
     14        '" class="edit"><a class="edit" target="_NEW2" href="'.$this->System->Link('/form.php?group='.$Group.'&amp;ID='.$ID).'">'.$orig_replace.'</a></span>',$Text);
     15    } else { 
     16      $Text = str_replace(' '.$orig,' <span Title="Přelož jako:&nbsp;'.$tran_replace.
     17        '" class="edit"><a class="edit" target="_NEW2" href="'.$this->System->Link('/dictionary/?search='.$tran).'">'.$orig_replace.'</a></span>',$Text);
     18    }
     19        //       }
     20    return ($Text);
    2321  }
    24   function ReplaceNotTranslated($orig,$tran,$Text,$ID,$Group) {
    25      global $System;
    26          $orig_replace = str_replace(' ','&nbsp;',htmlspecialchars($orig));
    27          
    28          $Text = str_replace(' '.$orig,' <span title="Kliknutím přeložíš" class="needtran"><a class="needtran" target="_NEW2" href="'.$System->Link('/form.php?group='.$Group.'&amp;ID='.$ID).'">'.$orig_replace.'</a></span>',$Text);
    29                                  return ($Text);
     22  function ReplaceNotTranslated($orig,$tran,$Text,$ID,$Group)
     23  {
     24    $orig_replace = str_replace(' ','&nbsp;',htmlspecialchars($orig));
     25       
     26    $Text = str_replace(' '.$orig,' <span title="Kliknutím přeložíš" class="needtran"><a class="needtran" target="_NEW2" href="'.
     27      $this->System->Link('/form.php?group='.$Group.'&amp;ID='.$ID).'">'.$orig_replace.'</a></span>',$Text);
     28    return ($Text);
    3029  }
    3130 
     
    4847                 if (($_GET['ID'] <> $Line[0]) or ($Line[1] <> $_GET['GroupId']))       
    4948      if ($Line[3] <> '')  {
    50         $Text = ReplaceTranslated($Line[2],$Line[3],$Text,$Line[0],$Line[1]);
     49        $Text = $this->ReplaceTranslated($Line[2],$Line[3],$Text,$Line[0],$Line[1]);
    5150       
    5251                        } else {
    53         $Text = ReplaceNotTranslated($Line[2],$Line[3],$Text,$Line[0],$Line[1]);
     52        $Text = $this->ReplaceNotTranslated($Line[2],$Line[3],$Text,$Line[0],$Line[1]);
    5453                        }
    5554                }
     
    5756        }               
    5857
    59 
    60   $Text = '';
    61         function LoadNames() {
    62       global $System,$TranslationTree;
    63           $Output = '';
    64           if (array_key_exists('GroupId', $_GET)) $GroupId = $_GET['GroupId'];
    65           $Table = $TranslationTree[$GroupId]['TablePrefix'];
    66                                 $DbResult = $System->Database->query('SELECT * FROM `'.$Table.'` WHERE `ID` = '.$_GET['ID'].' LIMIT 1');
    67                                 $LineAJ = $DbResult->fetch_assoc();
    68           $Column = $_GET['Column'];
    69           //$Text = $LineAJ[$TranslationTree[$GroupId]['Items'][$_GET['Item']]];
     58  function LoadNames()
     59  {
     60    global $TranslationTree;
     61               
     62    $Output = '';
     63    if(array_key_exists('GroupId', $_GET)) $GroupId = $_GET['GroupId'];
     64      else return(ShowMessage(T('GroupId not specified'), MESSAGE_CRITICAL));
     65    if(!array_key_exists('ID', $_GET)) return(ShowMessage(T('ID not specified'), MESSAGE_CRITICAL));
     66    if(!array_key_exists('Column', $_GET)) return(ShowMessage(T('Column not specified'), MESSAGE_CRITICAL));
     67    $Table = $TranslationTree[$GroupId]['TablePrefix'];
     68    $DbResult = $this->System->Database->query('SELECT * FROM `'.$Table.'` WHERE `ID` = '.$_GET['ID'].' LIMIT 1');
     69    $LineAJ = $DbResult->fetch_assoc();
     70    $Column = $_GET['Column'];
     71    //$Text = $LineAJ[$TranslationTree[$GroupId]['Items'][$_GET['Item']]];
    7072          $Text = $LineAJ[$Column];
    7173                $names = array();
    72                 if ($System->User->Licence(LICENCE_USER))
     74                if ($this->System->User->Licence(LICENCE_USER))
    7375                                        if(($GroupId < 4) or ($GroupId == 10) or ($GroupId == 11))
    7476          {
     
    8385                                        }
    8486                                         //$LineAJ[$Column]
    85                                         return (ColorNames(htmlspecialchars($Text),$names));
     87                                        return ($this->ColorNames(htmlspecialchars($Text),$names));
    8688    }
    87     echo str_replace("\n", '<br/>',LoadNames());
     89
     90  function Show()
     91  {
     92        $this->RawPage = true;
     93    return(str_replace("\n", '<br/>', $this->LoadNames()));
     94  }
     95}
  • trunk/Modules/Translation/Translation.php

    r765 r806  
    66include_once(dirname(__FILE__).'/TranslationList.php');
    77include_once(dirname(__FILE__).'/Progress.php');
     8include_once(dirname(__FILE__).'/LoadNames.php');
    89
    910class ModuleTranslation extends AppModule
     
    2930        $this->System->RegisterPage('progress', 'PageProgress');
    3031    $this->System->RegisterPage('TranslationList.php', 'PageTranslationList');
     32    $this->System->RegisterPage('LoadNames.php', 'PageLoadNames');
    3133    $this->System->ModuleManager->Modules['News']->RegisterRSS(array('Title' => T('Last translations'),
    3234      'Channel' => 'translation', 'Callback' => array($this, 'ShowRSS'), 'Permission' => LICENCE_ANONYMOUS));
  • trunk/includes/Version.php

    r805 r806  
    66// and system will need database update.
    77
    8 $Revision = 805; // Subversion revision
     8$Revision = 806; // Subversion revision
    99$DatabaseRevision = 803; // Database structure revision
    1010$ReleaseTime = '2014-05-24';
  • trunk/includes/global.php

    r805 r806  
    556556  }
    557557}
    558 function GetTranslatNamesArray() {
    559 
    560 $TablesColumn = array
     558
     559function GetTranslatNamesArray()
     560{
     561  $TablesColumn = array
    561562  (
    562563    'TextGameObject' => 'Name',
     
    577578  return($TablesColumn);
    578579}
     580
    579581function GetTranslatNames($Text,$mode,$TablesColumn, $FirstBig = True)
    580582{
Note: See TracChangeset for help on using the changeset viewer.