Changeset 71 for trunk/www/Base/Form.php


Ignore:
Timestamp:
Aug 23, 2009, 6:14:01 PM (15 years ago)
Author:
george
Message:
  • Upraveno: Znovu zprovozněny třídy HomePage, Server a User.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/www/Base/Form.php

    r69 r71  
    11<?php
    22
    3 class Form
     3class Form extends Module
    44{
    55  var $Definition = array();
     
    77  var $OnSubmit = '';
    88 
    9   function __construct($FormClass)
     9  function __construct($System, $FormClass)
    1010  { 
    1111    $this->Definition = $FormClass;
     
    1414      $this->Values[$Index] = '';
    1515    }   
     16    $this->System = $System;
     17    $this->Database = $System->Database;
     18    $this->Config = $System->Config;
    1619  }
    1720
     
    2427  function ShowTableBlock($Context = '')
    2528  {
    26     global $Database, $FormTypes;
     29    global $FormTypes;
    2730
    2831    $Table = array(
     
    4144      }
    4245    }
    43     $Output = '<div style="text-align: center">'.$this->Definition['Title'].'</div>'.Table($Table, 'WideTable');
     46    $Html = new Html();
     47    $Output = '<div style="text-align: center">'.$this->Definition['Title'].'</div>'.$Html->Table($Table, 'WideTable');
    4448    return($Output);
    4549  }
     
    5458  function ShowEditBlock($Context = '')
    5559  {
    56     global $Database, $FormTypes;
     60    global $FormTypes;
    5761
    5862    $Table = array(
     
    7074      }
    7175    }
    72     $Output = '<fieldset><legend>'.$this->Definition['Title'].'</legend>'.Table($Table, 'BasicTable').
     76    $Html = new Html();
     77    $Output = '<fieldset><legend>'.$this->Definition['Title'].'</legend>'.$Html->Table($Table, 'BasicTable').
    7378    '</fieldset>';
    7479    foreach($this->Definition['Items'] as $Index => $Item)
     
    7984  function LoadValuesFromDatabase($Id)
    8085  {
    81     global $Database;
    82 
    83     $DbResult = $Database->query('SELECT T.* FROM '.$this->Definition['Table'].' AS T WHERE T.Id='.$Id);
     86    $DbResult = $this->Database->query('SELECT T.* FROM '.$this->Definition['Table'].' AS T WHERE T.Id='.$Id);
    8487    if($DbResult->num_rows > 0) $DbRow = $DbResult->fetch_assoc();
    8588    foreach($this->Definition['Items'] as $Index => $Item)
     
    9497  function SaveValuesToDatabase($Id)
    9598  {
    96     global $Database;
    97 
    9899    if($Id == 0)
    99100    {
    100101      $this->Values['Id'] = $Id;
    101       $DbResult = $Database->replace($this->Definition['Table'], $this->Values);
     102      $DbResult = $this->Database->replace($this->Definition['Table'], $this->Values);
    102103    } else
    103     $DbResult = $Database->update($this->Definition['Table'], 'Id='.$Id, $this->Values);
     104    $DbResult = $this->Database->update($this->Definition['Table'], 'Id='.$Id, $this->Values);
    104105  }
    105106
Note: See TracChangeset for help on using the changeset viewer.