Ignore:
Timestamp:
Jan 24, 2012, 11:40:43 AM (13 years ago)
Author:
chronos
Message:
  • Upraveno: Sestavení navigačního řádku se nyní provádí postupným připojováním položek namísto globálního seznamu všeho.
File:
1 edited

Legend:

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

    r378 r385  
    33class ChatHistory extends Page
    44{
    5   var $FullTitle = 'Výpis z historie chatu';
    6   var $ShortTitle = 'Historie chatu';
    7 
     5  function __construct()
     6  {
     7    parent::__construct();
     8    $this->FullTitle = 'Výpis z historie chatu';
     9    $this->ShortTitle = 'Historie chatu';
     10    $this->NavigationPath[] = array('Name' => $this->ShortTitle, 'URL' => 'chat');     
     11  }
     12 
    813  function dechexr($Num)
    914  {
     
    1621    global $MonthNames;
    1722   
    18     if(!$this->System->Models['User']->CheckPermission('Chat', 'Display')) return('Nemáte oprávnění');
     23    if(!$this->System->Modules['User']->Models['User']->CheckPermission('Chat', 'Display')) return('Nemáte oprávnění');
    1924
    2025    if(array_key_exists('date', $_GET)) $Date = $_GET['date'];
Note: See TracChangeset for help on using the changeset viewer.