Changeset 93 for trunk/www/Base/Types
- Timestamp:
- Aug 15, 2013, 11:17:26 PM (11 years ago)
- Location:
- trunk/www/Base/Types
- Files:
-
- 20 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/www/Base/Types/Base.php
r78 r93 27 27 } 28 28 } 29 30 ?> -
trunk/www/Base/Types/Boolean.php
r69 r93 23 23 } 24 24 } 25 26 ?> -
trunk/www/Base/Types/Date.php
r69 r93 58 58 } 59 59 } 60 61 ?> -
trunk/www/Base/Types/DateTime.php
r69 r93 90 90 } 91 91 } 92 93 ?> -
trunk/www/Base/Types/Enumeration.php
r69 r93 28 28 } 29 29 } 30 31 ?> -
trunk/www/Base/Types/File/File.php
r69 r93 43 43 } 44 44 } 45 46 ?> -
trunk/www/Base/Types/File/FileDownload.php
r69 r93 20 20 echo(file_get_contents($Config['UploadFileFolder'].'/'.$DbRow['Id'])); 21 21 } else echo('Soubor nenalezen!'); 22 23 ?> -
trunk/www/Base/Types/Float.php
r69 r93 22 22 } 23 23 } 24 25 ?> -
trunk/www/Base/Types/GPS.php
r69 r93 68 68 } 69 69 } 70 71 ?> -
trunk/www/Base/Types/Hidden.php
r69 r93 20 20 } 21 21 } 22 23 ?> -
trunk/www/Base/Types/Hyperlink.php
r69 r93 20 20 } 21 21 } 22 23 ?> -
trunk/www/Base/Types/IPv4Address.php
r69 r93 20 20 } 21 21 } 22 23 ?> -
trunk/www/Base/Types/Integer.php
r69 r93 22 22 } 23 23 } 24 25 ?> -
trunk/www/Base/Types/Password.php
r69 r93 40 40 } 41 41 } 42 43 ?> -
trunk/www/Base/Types/PointerOneToMany.php
r69 r93 20 20 } 21 21 } 22 23 ?> -
trunk/www/Base/Types/PointerOneToOne.php
r71 r93 45 45 } 46 46 } 47 48 ?> -
trunk/www/Base/Types/String.php
r69 r93 27 27 } 28 28 } 29 30 ?> -
trunk/www/Base/Types/Text.php
r69 r93 27 27 } 28 28 } 29 30 ?> -
trunk/www/Base/Types/Time.php
r69 r93 54 54 } 55 55 } 56 57 ?> -
trunk/www/Base/Types/Type.php
r78 r93 40 40 ); 41 41 42 function ExecuteTypeEvent($ TypeName, $Event, $Parameters = array())42 function ExecuteTypeEvent($System, $TypeName, $Event, $Parameters = array()) 43 43 { 44 global $TypeDefinitionList , $System;44 global $TypeDefinitionList; 45 45 46 46 if(array_key_exists($TypeName, $TypeDefinitionList)) … … 74 74 return($TypeDefinitionList[$TypeName]); 75 75 } 76 77 ?>
Note:
See TracChangeset
for help on using the changeset viewer.