Ignore:
Timestamp:
Aug 23, 2009, 9:38:51 PM (15 years ago)
Author:
george
Message:
  • Přidáno: Zobrazení počítačů ve skupině.
  • Opraveno: Různé opravy změny struktury tříd.
Location:
trunk/www/Application/Controller
Files:
1 added
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/www/Application/Controller/Include.php

    r73 r74  
    1111include('Application/Controller/Debug.php');
    1212include('Application/Controller/Backup.php');
     13include('Application/Controller/Cluster.php');
    1314
    1415?>
  • trunk/www/Application/Controller/Server.php

    r73 r74  
    9797    $View->XMLExport();
    9898  }   
     99 
     100  function UnLock()
     101  {
     102    $Model = new Server($this->Database, $_GET['Id']);
     103    $Model->UnLock();
     104  }   
     105
     106  function Lock()
     107  {
     108    $Model = new Server($this->Database, $_GET['Id']);
     109    $Model->Lock();
     110  }     
    99111}
    100112
Note: See TracChangeset for help on using the changeset viewer.