Changeset 363


Ignore:
Timestamp:
Jan 18, 2012, 9:45:55 PM (13 years ago)
Author:
chronos
Message:
  • Upraveno: Seznam uživatelů přesunut do modulu User.
  • Upraveno: Seznam počítačů přesunut do modulu Network.
Location:
trunk
Files:
2 deleted
4 edited

Legend:

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

    r354 r363  
    7575    $this->AddPropertyOneToMany('User', 'User');
    7676    $this->AddPropertyString('Module');
    77     $this->AddPropertyString('Operation');   
    78     $this->AddPropertyString('Value');   
     77    $this->AddPropertyString('Operation');
     78    $this->AddPropertyString('Value');
    7979  }
    8080}
  • trunk/Modules/Network/Network.php

    r361 r363  
    88include('user_hosts.php');
    99include('NetworkInformation.php');
     10include('HostList.php');
    1011
    1112class NetworkPage extends Page
     
    2627        else if($this->System->PathItems[1] == 'pocitace') $PageClass = 'HostListPage';
    2728        else if($this->System->PathItems[1] == 'podsite') $PageClass = 'SubnetPage';
     29        else if($this->System->PathItems[1] == 'registrovane-pocitace') $PageClass = 'NetworkHostList';
    2830        else return(PAGE_NOT_FOUND);
    2931    } else $PageClass = 'NetworkInformationPage';
  • trunk/Modules/NetworkShare/SharePage.php

    r362 r363  
    281281        //echo($Host);
    282282        $Host = strtoupper(substr($Host, 0, strpos($Host, '.')));
    283         $DbResult = $this->Database->select('errors', '*', 'host="'.$Host.'"');
     283        $DbResult = $this->Database->select('NetworkShareError', '*', 'host="'.$Host.'"');
    284284        if($DbResult->num_rows > 0) $Output .= '<strong>Výpis chybových hlášení pro počítač '.$Host.':</strong><br />';
    285285        //echo('host="'.$Host.'"');
  • trunk/Modules/User/User.php

    r358 r363  
    11<?php
     2
     3include('UserList.php');
    24
    35define('LOGIN_USED', 'Přihlašovací jméno již použito.');
     
    336338  {     
    337339    $this->System->Models['User'] = new User($this->Database, $this->System);
     340    $this->System->Pages['uzivatele'] = 'UserListPage';
    338341  }
    339342 
Note: See TracChangeset for help on using the changeset viewer.