Ignore:
Timestamp:
Aug 13, 2013, 11:31:34 PM (11 years ago)
Author:
chronos
Message:
  • Modified: New RSS channels are now registered by modules itself.
  • Modified: ShoutBox transformed to application module.
File:
1 edited

Legend:

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

    r552 r561  
    1616                }
    1717                return $Text;
    18         }       
     18        }              
    1919
    2020        function Show()
    2121        {
     22                $Action = '';
     23    if(array_key_exists('action', $_GET)) $Action = $_GET['action'];
     24               
     25    if($Action == 'delete') $Output = $this->Delete();
     26                else $Output = $this->ShowForm();
     27                return($Output);
     28        }
     29       
     30        function ShowForm()
     31        {
    2232                global $System, $Config, $User, $TranslationTree;
     33               
    2334                $Output = '';
    2435       
     
    197208                } else $Output = ShowMessage('Nebylo zadáno ID.', MESSAGE_CRITICAL);
    198209                return($Output);
     210        }
     211
     212        function Delete()
     213        {
     214                global $System, $User, $Config;
     215       
     216                if($User->Licence(LICENCE_MODERATOR))
     217                {
     218                        $TextID = $_GET['ID'];
     219                        $System->Database->query('DELETE FROM `'.$Table.'` WHERE `ID` = '.$TextID.' AND `Language` <> '.$Config['OriginalLanguage']);
     220                        $Output = ShowMessage('Překlad byl smazán.');
     221                        WriteLog('Překlad byl smazán! <a href="form.php?group='.$GroupID.'&amp;ID='.$TextID.'">'.$TextID.'</a>', LOG_TYPE_MODERATOR);
     222                } else $Output = ShowMessage('Nemáte oprávnění', MESSAGE_CRITICAL);
     223                return($Output);
    199224        }       
    200225}
Note: See TracChangeset for help on using the changeset viewer.