Changeset 448 for trunk/Common/Forms.php
- Timestamp:
- Oct 16, 2012, 9:49:30 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Common/Forms.php
r447 r448 87 87 $UseType = 'Enumeration'; 88 88 } else $UseType = $Item['Type']; 89 $Edit = ''.$System->Type->ExecuteTypeEvent($UseType, 'OnEdit', $Parameters).'';89 $Edit = $System->Type->ExecuteTypeEvent($UseType, 'OnEdit', $Parameters); 90 90 91 91 array_push($Table['Rows'], array($Item['Caption'].':', $Edit)); … … 117 117 $UseType = 'Enumeration'; 118 118 } else $UseType = $Item['Type']; 119 $this->Values[$Index] = ''.$System->Type->ExecuteTypeEvent($UseType, 'OnLoadDb',119 $this->Values[$Index] = $System->Type->ExecuteTypeEvent($UseType, 'OnLoadDb', 120 120 array('Value' => $DbRow[$Index], 'Name' => $Index, 121 'Type' => $Item['Type'])) .'';121 'Type' => $Item['Type'])); 122 122 123 123 //echo($DbRow[$Index].'='.$this->Values[$Index].'<br/>'); … … 150 150 $UseType = 'Enumeration'; 151 151 } else $UseType = $Item['Type']; 152 $Values[$Index] = ''.$System->Type->ExecuteTypeEvent($UseType, 'OnSaveDb', $Parameters).'';152 $Values[$Index] = $System->Type->ExecuteTypeEvent($UseType, 'OnSaveDb', $Parameters); 153 153 154 154 //echo($DbRow[$Index].'='.$this->Values[$Index].'<br/>'); … … 189 189 $UseType = 'Enumeration'; 190 190 } else $UseType = $Item['Type']; 191 $Values[$Index] = ''.$System->Type->ExecuteTypeEvent($UseType, 'OnLoad',192 array('Name' => $Index, 'Type' => $Item['Type'])) .'';191 $Values[$Index] = $System->Type->ExecuteTypeEvent($UseType, 'OnLoad', 192 array('Name' => $Index, 'Type' => $Item['Type'])); 193 193 } 194 194 return($Values);
Note:
See TracChangeset
for help on using the changeset viewer.