Ignore:
Timestamp:
Jan 17, 2012, 1:00:26 PM (13 years ago)
Author:
chronos
Message:
  • Upraveno: Správa uživatelů je nyní přetvořena na modul modulárního systému.
  • Upraveno: Hlavní objekt System je nyní odvozen z třídy ModularSystem.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/aktuality/index.php

    r311 r343  
    2727    {
    2828      case 'view':
    29         if(!$this->System->Modules['User']->CheckPermission('News', 'Display', 'Item')) $Output .= 'Nemáte oprávnění';
     29        if(!$this->System->Models['User']->CheckPermission('News', 'Display', 'Item')) $Output .= 'Nemáte oprávnění';
    3030        else
    3131        {
     
    3939              else $Author = $Row['Name'];
    4040            $Output .= '<div class="Panel"><div class="Title">'.$Row['Title'].' ('.HumanDate($Row['Date']).', '.$Author.')';
    41             if($this->System->Modules['User']->User['Id'] == $Row['User'])
     41            if($this->System->Models['User']->User['Id'] == $Row['User'])
    4242            {
    4343              $Output .= '<div class="Action">';
     
    6969        while($DbRow = $DbResult->fetch_array())
    7070        {
    71           if($this->System->Modules['User']->CheckPermission('News', 'Insert', 'Group', $DbRow['Id']))
     71          if($this->System->Models['User']->CheckPermission('News', 'Insert', 'Group', $DbRow['Id']))
    7272          {
    7373            if($DbRow['Id'] == $Category) $Selected = ' selected="1"'; else $Selected = '';
     
    8888      case 'add2':
    8989        $RemoteAddr = GetRemoteAddress(); 
    90         if($this->System->Modules['User']->CheckPermission('News', 'Insert', 'Group', $Category))
     90        if($this->System->Models['User']->CheckPermission('News', 'Insert', 'Group', $Category))
    9191        {
    9292          //print_r($_FILES);
     
    110110
    111111          $_POST['content'] = str_replace("\n",'<br />',$_POST['content']);
    112           $this->Database->insert('News', array('Category' => $Category, 'Title' => $_POST['title'], 'Content' => $_POST['content'], 'Date' => 'NOW()', 'IP' => $RemoteAddr, 'Enclosure' => $Enclosures, 'Author' => $this->System->Modules['User']->User['Name'], 'User' => $this->System->Modules['User']->User['Id'], 'Link' => $_POST['link']));
     112          $this->Database->insert('News', array('Category' => $Category, 'Title' => $_POST['title'], 'Content' => $_POST['content'], 'Date' => 'NOW()', 'IP' => $RemoteAddr, 'Enclosure' => $Enclosures, 'Author' => $this->System->Models['User']->User['Name'], 'User' => $this->System->Models['User']->User['Id'], 'Link' => $_POST['link']));
    113113          $Output .= 'Aktualita přidána!<br />Pokud budete chtít vaši aktualitu smazat, klikněte na odkaz Smazat v seznamu všech aktualit v kategorii.<br /><br />';
    114114          $Output .= '<a href="index.php?category='.$_POST['category'].'">Zpět na seznam aktualit</a>';
     
    119119        $DbResult = $this->Database->query('SELECT * FROM News WHERE Id='.$_GET['id']);
    120120        $Row = $DbResult->fetch_array();
    121         if($this->System->Modules['User']->User['Id'] == $Row['User'])
     121        if($this->System->Models['User']->User['Id'] == $Row['User'])
    122122        {
    123123          $Row['Content'] = str_replace('<br />', '', $Row['Content']);
     
    140140        {
    141141          $Row = $DbResult->fetch_array();
    142           if($this->System->Modules['User']->User['Id'] == $Row['User'])
     142          if($this->System->Models['User']->User['Id'] == $Row['User'])
    143143          {
    144144            $_POST['content'] = str_replace("\n", '<br />', $_POST['content']);
     
    152152        $DbResult = $this->Database->query('SELECT * FROM News WHERE Id='.$_GET['id']);
    153153        $Row = $DbResult->fetch_array();
    154         if($this->System->Modules['User']->User['Id'] == $Row['User'])
     154        if($this->System->Models['User']->User['Id'] == $Row['User'])
    155155        {
    156156          if($Row['Enclosure'] != '')
     
    168168        break;
    169169      default:
    170         if($this->System->Modules['User']->CheckPermission('News', 'Display', 'Group', $Category))
     170        if($this->System->Models['User']->CheckPermission('News', 'Display', 'Group', $Category))
    171171        {
    172172          $News = new News($this->Database);
     
    187187              else $Author = $Row['Name'];
    188188            $Output .= '<div class="Panel"><div class="Title"><a href="?action=view&amp;id='.$Row['Id'].'">'.$Row['Title'].'</a> ('.HumanDate($Row['Date']).', '.$Author.')';
    189             if($this->System->Modules['User']->User['Id'] == $Row['User'])
     189            if($this->System->Models['User']->User['Id'] == $Row['User'])
    190190            {
    191191              $Output .= '<div class="Action">';
Note: See TracChangeset for help on using the changeset viewer.