Ignore:
Timestamp:
Aug 4, 2009, 9:53:52 AM (15 years ago)
Author:
george
Message:
  • Upraveno: Definice formulářů a tabulek ze souboru form_classes.php byly rozděleny do odpovídajících souborů ve složce view.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/www/view/backup.php

    r55 r56  
    33class BackupView extends Module
    44{
     5  var $ItemListFormClass = array(
     6    'Title' => 'Zálohy',
     7    'Table' => '(SELECT * FROM `Backup`)',
     8    'Items' => array(
     9      'Time' => array('Type' => 'DateTime', 'Caption' => 'Čas', 'Default' => ''),
     10      'Description' => array('Type' => 'String', 'Caption' => 'Popis', 'Default' => ''),
     11    ),
     12  );
     13
    514  function ShowListOnRow($Row)
    615  {
     
    2029      {
    2130        $Output = '<h4>Dostupné zálohy</h4>';
    22         $Table = new Table('BackupList');
     31        $Table = new Table($this->ItemListFormClass);
    2332        $Table->OnRow = array($this, 'ShowListOnRow');
    2433        $Table->Definition['Table'] = '(SELECT * FROM `Backup` WHERE `Server` = '.$Server->Id.')';
Note: See TracChangeset for help on using the changeset viewer.