Changeset 548


Ignore:
Timestamp:
Jun 18, 2013, 7:23:39 PM (11 years ago)
Author:
chronos
Message:
  • Upraveno: Slovníček přepracován na aplikační modul.
  • Upraveno: Do hlavní levé nabídky mohou nyní moduly přidávat nové položky.
Location:
trunk
Files:
1 added
9 edited
1 moved

Legend:

Unmodified
Added
Removed
  • trunk/Modules/AoWoW/AoWoW.php

    r547 r548  
    1313    $this->Dependencies = array();
    1414  }
     15 
     16  function Start()
     17  {
     18        $this->System->RegisterMenuItem(array(
     19        'Title' => 'AoWoW',
     20        'Hint' => 'Vyhledávací databáze podobná WoWHead s překlady',
     21        'Link' => $this->System->Link('/aowow/'),
     22        'Permission' => LICENCE_ANONYMOUS,
     23        'Icon' => '',
     24    ));
     25  }
    1526}
  • trunk/Modules/Dictionary/Dictionary.php

    r546 r548  
    11<?php
    22
    3 include('includes/global.php');
     3class ModuleDictionary extends AppModule
     4{
     5  function __construct($System)
     6  {
     7    parent::__construct($System);
     8    $this->Name = 'Dictionary';
     9    $this->Version = '1.0';
     10    $this->Creator = 'Chronos';
     11    $this->License = 'GNU/GPL';
     12    $this->Description = 'Custom dictionary for better translation coordination';
     13    $this->Dependencies = array();
     14  }
     15 
     16  function Start()
     17  {
     18        $this->System->RegisterPage('dictionary.php', 'PageDictionary');
     19        $this->System->RegisterMenuItem(array(
     20        'Title' => 'Slovníček',
     21        'Hint' => 'Slovník WoW výrazů',
     22        'Link' => $this->System->Link('/dictionary.php'),
     23        'Permission' => LICENCE_ANONYMOUS,
     24        'Icon' => '',
     25    ));
     26  }
     27}
     28
     29class PageDictionary extends Page
     30{
    431
    532function WriteTranslatNames($Text,$mode)
     
    4673}
    4774
    48 $LanguageList = GetLanguageList();
    49 
    50 if(!isset($_SESSION['language']))
    51 {
    52         if($User->Licence(LICENCE_USER))
    53         {
    54                 $_SESSION['language'] = $User->Language;
    55   } else $_SESSION['language'] = '';
    56 }
    57 if(array_key_exists('language', $_GET)) {
    58   if($_GET['language'] == '') $_SESSION['language'] = '';
    59           else $_SESSION['language'] = $_GET['language'] * 1;
    60 }
    61 
    62 $Output = '<h3>Slovníček</h3>';
    63 
    6475function DictionaryInsert()
    6576{
    66   global $System, $User;
     77  global $User;
    6778 
    6879  $Output = '';
     
    8697function DictionarySave()
    8798{
    88   global $System, $User, $Config;
     99  global $User, $Config;
    89100 
    90101  if($User->Licence(LICENCE_USER))
     
    93104    {
    94105      // Check if original text exists and determine entry id
    95       $DbResult = $System->Database->query('SELECT * FROM `Dictionary` WHERE '.
     106      $DbResult = $this->Database->query('SELECT * FROM `Dictionary` WHERE '.
    96107        '`Text` = "'.$_POST['Original'].'" AND `Language`= '.$Config['OriginalLanguage']);
    97108      if($DbResult->num_rows > 0)
     
    101112      } else
    102113      {
    103         $DbResult = $System->Database->query('SELECT MAX(`Entry`) FROM `Dictionary`');
     114        $DbResult = $this->Database->query('SELECT MAX(`Entry`) FROM `Dictionary`');
    104115        $DbRow = $DbResult->fetch_row();
    105116        $Entry = $DbRow[0] + 1;
    106         $System->Database->query('INSERT INTO `Dictionary` ( `Text` , `Entry` , `Description` , '.
     117        $this->Database->query('INSERT INTO `Dictionary` ( `Text` , `Entry` , `Description` , '.
    107118          '`User`, `Language` ) VALUES ("'.$_POST['Original'].'", "'.$Entry.'", "", NULL, '.$Config['OriginalLanguage'].');');
    108119      }
    109120 
    110       $DbResult = $System->Database->query('SELECT `Id` FROM `Dictionary` WHERE '.
     121      $DbResult = $this->Database->query('SELECT `Id` FROM `Dictionary` WHERE '.
    111122        '`Entry` = '.$Entry.' AND `Language`='.$_POST['Language'].' AND `User`='.$User->Id);
    112123      if($DbResult->num_rows > 0)
    113124      {
    114125        $DbRow = $DbResult->fetch_assoc();
    115         $System->Database->query('UPDATE `Dictionary` SET `Text`="'.$_POST['Translated'].'", '.
     126        $this->Database->query('UPDATE `Dictionary` SET `Text`="'.$_POST['Translated'].'", '.
    116127          '`Description` = "'.$_POST['Description'].'" WHERE Id='.$DbRow['Id']);
    117128      } else
    118         $System->Database->query('INSERT INTO `Dictionary` ( `Text` , `Entry` , `Description` , '.
     129        $this->Database->query('INSERT INTO `Dictionary` ( `Text` , `Entry` , `Description` , '.
    119130          '`User`, `Language` ) VALUES ("'.$_POST['Translated'].'", "'.$Entry.'", "'.$_POST['Description'].'", '.$User->Id.', '.$_POST['Language'].')');
    120131      $Output = ShowMessage('Záznam byl uložen!');
     
    126137function DictionaryRemove()
    127138{
    128   global $System, $User;
     139  global $User;
    129140 
    130141  if($User->Licence(LICENCE_USER))
    131142  {
    132     $System->Database->query('DELETE FROM `Dictionary` WHERE (`User`='.$User->Id.') AND (`Id`='.($_GET['id'] * 1).')');
     143    $this->Database->query('DELETE FROM `Dictionary` WHERE (`User`='.$User->Id.') AND (`Id`='.($_GET['id'] * 1).')');
    133144    $Output = ShowMessage('Záznam odstraněn.');
    134145  } else $Output = ShowMessage('Nemáte oprávnění', MESSAGE_CRITICAL);
     
    138149function DictionaryModify()
    139150{
    140   global $System, $User, $Config;
     151  global $User, $Config;
    141152 
    142153  if($User->Licence(LICENCE_USER))
    143154  {
    144     $DbResult = $System->Database->query('SELECT * FROM `Dictionary` WHERE `Id`='.($_GET['id'] * 1));
     155    $DbResult = $this->Database->query('SELECT * FROM `Dictionary` WHERE `Id`='.($_GET['id'] * 1));
    145156    if($DbResult->num_rows > 0)
    146157    {
    147158      $DbRow = $DbResult->fetch_assoc();
    148       $DbResult = $System->Database->query('SELECT * FROM `Dictionary` WHERE (`User` IS NULL) '.
     159      $DbResult = $this->Database->query('SELECT * FROM `Dictionary` WHERE (`User` IS NULL) '.
    149160        'AND (`Entry`='.$DbRow['Entry'].') AND (`Language`= '.$Config['OriginalLanguage'].')');
    150161      $DbRow2 = $DbResult->fetch_assoc();
     
    168179function DictionaryGroup()
    169180{
    170   global $System, $User, $TranslationTree;
     181  global $User, $TranslationTree;
    171182 
    172183  $Output = '';
     
    183194        '<a href="?action=group&amp;mode=0&amp;group='.$GroupId.'&amp;ID='.$TextID.'" title="Zobrazit pouze přesné výsledky">Přesné</a> '.
    184195        '<a href="?action=group&amp;mode=2&amp;group='.$GroupId.'&amp;ID='.$TextID.'" title="Zobrazit všechny nepřeložené">Nepřeložené</a> ';
    185     $DbResult = $System->Database->query('SELECT * FROM '.$Table.' WHERE ID = '.$TextID);
     196    $DbResult = $this->Database->query('SELECT * FROM '.$Table.' WHERE ID = '.$TextID);
    186197    $Line = $DbResult->fetch_assoc();
    187198    if(!$Line) $Output .= ShowMessage('Překlad nenalezen.', MESSAGE_CRITICAL);
     
    199210function DictionaryShow()
    200211{
    201   global $System, $User, $LanguageList, $Config;
     212  global $User, $LanguageList, $Config;
    202213 
    203214  $Output = '<form action="dictionary.php" method="get" style="margin: 0px; padding: 0px;">'.
     
    246257      $LanguageFilter.$Condition;
    247258 
    248   $DbResult = $System->Database->query('SELECT COUNT(*) FROM ('.$sql.') AS `T1`');
     259  $DbResult = $this->Database->query('SELECT COUNT(*) FROM ('.$sql.') AS `T1`');
    249260  $DbRow = $DbResult->fetch_row();
    250261  $PageList = GetPageList($DbRow[0]); 
     
    266277
    267278  $sql_page = $sql.$Order['SQL'].$PageList['SQLLimit'];
    268   $DbResult = $System->Database->query($sql_page);
     279  $DbResult = $this->Database->query($sql_page);
    269280  while($Line = $DbResult->fetch_assoc())
    270281  {
     
    291302}
    292303
    293 $Output = '';
     304function Show()
     305{
     306        global $LanguageList;
     307       
     308$LanguageList = GetLanguageList();
     309
     310if(!isset($_SESSION['language']))
     311{
     312        if($User->Licence(LICENCE_USER))
     313        {
     314                $_SESSION['language'] = $User->Language;
     315  } else $_SESSION['language'] = '';
     316}
     317if(array_key_exists('language', $_GET)) {
     318  if($_GET['language'] == '') $_SESSION['language'] = '';
     319          else $_SESSION['language'] = $_GET['language'] * 1;
     320}
     321
     322$Output = '<h3>Slovníček</h3>';
     323
    294324$ShowList = true;
    295325if(array_key_exists('action', $_GET))
    296326{
    297327  if($_GET['action'] == 'group') {
    298     $Output .= DictionaryGroup();
     328    $Output .= $this->DictionaryGroup();
    299329    $ShowList = false;
    300330  }
    301   else if($_GET['action'] == 'insert') $Output .= DictionaryInsert();
    302   else if($_GET['action'] == 'save') $Output .= DictionarySave();
    303   else if($_GET['action'] == 'remove') $Output .= DictionaryRemove();
    304   else if($_GET['action'] == 'modify') $Output .= DictionaryModify();
     331  else if($_GET['action'] == 'insert') $Output .= $this->DictionaryInsert();
     332  else if($_GET['action'] == 'save') $Output .= $this->DictionarySave();
     333  else if($_GET['action'] == 'remove') $Output .= $this->DictionaryRemove();
     334  else if($_GET['action'] == 'modify') $Output .= $this->DictionaryModify();
    305335  else $Output .= ShowMessage('Neznámá akce', MESSAGE_CRITICAL); 
    306336}
    307 if($ShowList == true) $Output .= DictionaryShow();
    308 
    309 ShowPage($Output);
    310 
    311 ?>
     337if($ShowList == true) $Output .= $this->DictionaryShow();
     338    return($Output);
     339  }
     340}
  • trunk/Modules/FrontPage/FrontPage.php

    r547 r548  
    1717  {
    1818    $this->System->RegisterPage('', 'PageFrontPage');
     19    $this->System->RegisterMenuItem(array(
     20      'Title' => 'Domů',
     21      'Hint' => 'Hlavní stránka',
     22      'Link' => $this->System->Link('/'),
     23      'Permission' => LICENCE_ANONYMOUS,
     24      'Icon' => '',
     25    ));
    1926  }
    2027}
  • trunk/Modules/Referrer/Referrer.php

    r547 r548  
    2222        $this->Log();
    2323        $this->System->RegisterPage('banners.php', 'PageReferrer');
     24        $this->System->RegisterMenuItem(array(
     25        'Title' => 'Propagace',
     26        'Hint' => 'Informace k propagaci tohoto projektu',
     27        'Link' => $this->System->Link('/banners.php'),
     28        'Permission' => LICENCE_ANONYMOUS,
     29        'Icon' => '',
     30    ));
    2431  }
    2532 
  • trunk/Modules/Team/Team.php

    r547 r548  
    1717  {
    1818        $this->System->RegisterPage('team.php', 'PageTeam');
     19        $this->System->RegisterMenuItem(array(
     20      'Title' => 'Týmy',
     21      'Hint' => 'Seznam překladatelských týmů',
     22      'Link' => $this->System->Link('/team.php?search='),
     23      'Permission' => LICENCE_ANONYMOUS,
     24      'Icon' => '',
     25    ));
    1926  }
    2027}
  • trunk/Modules/User/User.php

    r547 r548  
    2626                $this->System->RegisterPage('registrace.php', 'PageUserRegistration');
    2727                $this->System->RegisterPage('user.php', 'PageUserProfile');
     28                $this->System->RegisterMenuItem(array(
     29        'Title' => 'Překladatelé',
     30        'Hint' => 'Seznam registrovaných uživatelů',
     31        'Link' => $this->System->Link('/userlist.php?action=nofilter'),
     32        'Permission' => LICENCE_ANONYMOUS,
     33        'Icon' => '',
     34    ));
    2835        }
    2936}
  • trunk/includes/Page.php

    r547 r548  
    8282  global $Config, $User, $System;
    8383 
    84   $Menu = array
    85   (
    86     array(
    87       'Title' => 'Domů',
    88       'Hint' => 'Hlavní stránka',
    89       'Link' => $System->Link('/'),
    90       'Permission' => LICENCE_ANONYMOUS,
    91       'Icon' => '',
    92     ),
    93     array(
    94       'Title' => 'Slovníček',
    95       'Hint' => 'Slovník WoW výrazů',
    96       'Link' => $System->Link('/dictionary.php'),
    97       'Permission' => LICENCE_ANONYMOUS,
    98       'Icon' => '',
    99     ),
    100     array(
    101       'Title' => 'Stav dokončení',
    102       'Hint' => 'Stav dokončení překládů',
    103       'Link' => $System->Link('/statistic.php'),
    104       'Permission' => LICENCE_ANONYMOUS,
    105       'Icon' => '',
    106     ),
    107     array(
    108       'Title' => 'Překladatelé',
    109       'Hint' => 'Seznam registrovaných uživatelů',
    110       'Link' => $System->Link('/userlist.php?action=nofilter'),
    111       'Permission' => LICENCE_ANONYMOUS,
    112       'Icon' => '',
    113     ),
    114     array(
    115       'Title' => 'Týmy',
    116       'Hint' => 'Seznam překladatelských týmů',
    117       'Link' => $System->Link('/team.php?search='),
    118       'Permission' => LICENCE_ANONYMOUS,
    119       'Icon' => '',
    120     ),
    121     array(
    122       'Title' => 'Servery',
    123       'Hint' => 'Seznam serverů, kde je nasazena čeština v praxi',
    124       'Link' => $System->Link('/serverlist.php'),
    125       'Permission' => LICENCE_ANONYMOUS,
    126       'Icon' => '',
    127     ),
    128     array(
    129       'Title' => 'Exporty',
    130       'Hint' => 'Zde si můžete stáhnout přeložené texty',
    131       'Link' => $System->Link('/export/'),
    132       'Permission' => LICENCE_ANONYMOUS,
    133       'Icon' => '',
    134     ),
    135     array(
    136       'Title' => 'Soubory',
    137       'Hint' => 'Stahování různých pomocných souborů a programů',
    138       'Link' => $System->Link('/download.php'),
    139       'Permission' => LICENCE_ANONYMOUS,
    140       'Icon' => '',
    141     ),
    142     array(
    143       'Title' => 'Pokyny',
    144       'Hint' => 'Informace k překladu hry',
    145       'Link' => $System->Link('/info.php'),
    146       'Permission' => LICENCE_ANONYMOUS,
    147       'Icon' => '',
    148     ),
    149     array(
    150       'Title' => 'Zdroje dat',
    151       'Hint' => 'Informace o překladových skupinách',
    152       'Link' => $System->Link('/TranslationList.php?action=grouplist'),
    153       'Permission' => LICENCE_ANONYMOUS,
    154       'Icon' => '',
    155     ),
    156     array(
    157       'Title' => 'Propagace',
    158       'Hint' => 'Informace k propagaci tohoto projektu',
    159       'Link' => $System->Link('/banners.php'),
    160       'Permission' => LICENCE_ANONYMOUS,
    161       'Icon' => '',
    162     ),
    163     array(
    164       'Title' => 'Prezentace',
    165       'Hint' => 'Prezentace a motivace překladu',
    166       'Link' => $System->Link('/promotion.php'),
    167       'Permission' => LICENCE_ANONYMOUS,
    168       'Icon' => '',
    169     ),
    170     array(
    171       'Title' => 'Verze hry',
    172       'Hint' => 'Seznam verzí herního klienta',
    173       'Link' => $System->Link('/version.php'),
    174       'Permission' => LICENCE_ANONYMOUS,
    175       'Icon' => '',
    176     ),
    177     array(
    178       'Title' => 'AoWoW',
    179       'Hint' => 'Vyhledávací databáze podobná WoWHead s překlady',
    180       'Link' => $System->Link('/aowow/'),
    181       'Permission' => LICENCE_ANONYMOUS,
    182       'Icon' => '',
    183     ),
    184     array(
    185       'Title' => 'IRC chat',
    186       'Hint' => 'IRC chat pro překladatele',
    187       'Link' => 'http://embed.mibbit.com/?server=game.zdechov.net%3A6667&amp;channel=%23wowpreklad&amp;forcePrompt=true&amp;charset=utf-8',
    188       'Permission' => LICENCE_ANONYMOUS,
    189       'Icon' => '',
    190     ),
    191     array(
    192       'Title' => 'Správa',
    193       'Hint' => 'Volby pro správu',
    194       'Link' => $System->Link('/admin/'),
    195       'Permission' => LICENCE_ADMIN,
    196       'Icon' => '',
    197     ),
    198   );
    199  
    20084  $Output = '<strong>Nabídka:</strong>'.
    20185    '<div class="verticalmenu"><ul>';
    202   foreach($Menu as $MenuItem)
     86  foreach($System->Menu as $MenuItem)
    20387  if($User->Licence($MenuItem['Permission']))
    20488  {
  • trunk/includes/global.php

    r547 r548  
    1919include_once(dirname(__FILE__).'/../Modules/Team/Team.php');
    2020include_once(dirname(__FILE__).'/../Modules/User/User.php');
     21include_once(dirname(__FILE__).'/../Modules/Dictionary/Dictionary.php');
    2122
    2223GlobalInit();
     
    6768  $System->ModuleManager->RegisterModule(new ModuleFrontPage($System));
    6869  $System->ModuleManager->RegisterModule(new ModuleTeam($System));
     70  $System->ModuleManager->RegisterModule(new ModuleDictionary($System));
    6971  $System->ModuleManager->StartAll();
    7072}
  • trunk/includes/system.php

    r545 r548  
    4343    $this->Database->LogSQLQuery = $this->Config['Web']['LogSQLQuery'];
    4444    $this->ModuleManager = new AppModuleManager();
     45
     46    $this->Menu = array
     47    (                   
     48                array(
     49                                'Title' => 'Stav dokončení',
     50                                'Hint' => 'Stav dokončení překládů',
     51                                'Link' => $this->Link('/statistic.php'),
     52                                'Permission' => LICENCE_ANONYMOUS,
     53                                'Icon' => '',
     54                ),
     55                array(
     56                                'Title' => 'Servery',
     57                                'Hint' => 'Seznam serverů, kde je nasazena čeština v praxi',
     58                                'Link' => $this->Link('/serverlist.php'),
     59                                'Permission' => LICENCE_ANONYMOUS,
     60                                'Icon' => '',
     61                ),
     62                array(
     63                                'Title' => 'Exporty',
     64                                'Hint' => 'Zde si můžete stáhnout přeložené texty',
     65                                'Link' => $this->Link('/export/'),
     66                                'Permission' => LICENCE_ANONYMOUS,
     67                                'Icon' => '',
     68                ),
     69                array(
     70                                'Title' => 'Soubory',
     71                                'Hint' => 'Stahování různých pomocných souborů a programů',
     72                                'Link' => $this->Link('/download.php'),
     73                                'Permission' => LICENCE_ANONYMOUS,
     74                                'Icon' => '',
     75                ),
     76                array(
     77                                'Title' => 'Pokyny',
     78                                'Hint' => 'Informace k překladu hry',
     79                                'Link' => $this->Link('/info.php'),
     80                                'Permission' => LICENCE_ANONYMOUS,
     81                                'Icon' => '',
     82                ),
     83                array(
     84                                'Title' => 'Zdroje dat',
     85                                'Hint' => 'Informace o překladových skupinách',
     86                                'Link' => $this->Link('/TranslationList.php?action=grouplist'),
     87                                'Permission' => LICENCE_ANONYMOUS,
     88                                'Icon' => '',
     89                ),
     90                array(
     91                                'Title' => 'Prezentace',
     92                                'Hint' => 'Prezentace a motivace překladu',
     93                                'Link' => $this->Link('/promotion.php'),
     94                                'Permission' => LICENCE_ANONYMOUS,
     95                                'Icon' => '',
     96                ),
     97                array(
     98                                'Title' => 'Verze hry',
     99                                'Hint' => 'Seznam verzí herního klienta',
     100                                'Link' => $this->Link('/version.php'),
     101                                'Permission' => LICENCE_ANONYMOUS,
     102                                'Icon' => '',
     103                ),
     104                array(
     105                                'Title' => 'IRC chat',
     106                                'Hint' => 'IRC chat pro překladatele',
     107                                'Link' => 'http://embed.mibbit.com/?server=game.zdechov.net%3A6667&amp;channel=%23wowpreklad&amp;forcePrompt=true&amp;charset=utf-8',
     108                                'Permission' => LICENCE_ANONYMOUS,
     109                                'Icon' => '',
     110                ),
     111                array(
     112                                'Title' => 'Správa',
     113                                'Hint' => 'Volby pro správu',
     114                                'Link' => $this->Link('/admin/'),
     115                                'Permission' => LICENCE_ADMIN,
     116                                'Icon' => '',
     117                ),
     118    );
     119   
    45120  }
    46121 
     
    69144      $Page[$LastKey] = $Handler;
    70145    } else $this->Pages[$Path] = $Handler;
     146  }
     147 
     148  function RegisterMenuItem($MenuItem)
     149  {
     150        $this->Menu[] = $MenuItem;
    71151  }
    72152 
  • trunk/promotion.php

    r504 r548  
    1   <?php
     1<?php
    22
    33include('includes/global.php');
Note: See TracChangeset for help on using the changeset viewer.