Changeset 71 for trunk/www/Base/Form.php
- Timestamp:
- Aug 23, 2009, 6:14:01 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/www/Base/Form.php
r69 r71 1 1 <?php 2 2 3 class Form 3 class Form extends Module 4 4 { 5 5 var $Definition = array(); … … 7 7 var $OnSubmit = ''; 8 8 9 function __construct($ FormClass)9 function __construct($System, $FormClass) 10 10 { 11 11 $this->Definition = $FormClass; … … 14 14 $this->Values[$Index] = ''; 15 15 } 16 $this->System = $System; 17 $this->Database = $System->Database; 18 $this->Config = $System->Config; 16 19 } 17 20 … … 24 27 function ShowTableBlock($Context = '') 25 28 { 26 global $ Database, $FormTypes;29 global $FormTypes; 27 30 28 31 $Table = array( … … 41 44 } 42 45 } 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'); 44 48 return($Output); 45 49 } … … 54 58 function ShowEditBlock($Context = '') 55 59 { 56 global $ Database, $FormTypes;60 global $FormTypes; 57 61 58 62 $Table = array( … … 70 74 } 71 75 } 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'). 73 78 '</fieldset>'; 74 79 foreach($this->Definition['Items'] as $Index => $Item) … … 79 84 function LoadValuesFromDatabase($Id) 80 85 { 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); 84 87 if($DbResult->num_rows > 0) $DbRow = $DbResult->fetch_assoc(); 85 88 foreach($this->Definition['Items'] as $Index => $Item) … … 94 97 function SaveValuesToDatabase($Id) 95 98 { 96 global $Database;97 98 99 if($Id == 0) 99 100 { 100 101 $this->Values['Id'] = $Id; 101 $DbResult = $ Database->replace($this->Definition['Table'], $this->Values);102 $DbResult = $this->Database->replace($this->Definition['Table'], $this->Values); 102 103 } else 103 $DbResult = $ Database->update($this->Definition['Table'], 'Id='.$Id, $this->Values);104 $DbResult = $this->Database->update($this->Definition['Table'], 'Id='.$Id, $this->Values); 104 105 } 105 106
Note:
See TracChangeset
for help on using the changeset viewer.