Changeset 448 for trunk/Common/Forms.php


Ignore:
Timestamp:
Oct 16, 2012, 9:49:30 PM (12 years ago)
Author:
chronos
Message:
  • Opraveno: NULL hodnoty ve formulářích.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Common/Forms.php

    r447 r448  
    8787            $UseType = 'Enumeration';
    8888        } else $UseType = $Item['Type'];
    89         $Edit = ''.$System->Type->ExecuteTypeEvent($UseType, 'OnEdit', $Parameters).'';
     89        $Edit = $System->Type->ExecuteTypeEvent($UseType, 'OnEdit', $Parameters);
    9090
    9191      array_push($Table['Rows'], array($Item['Caption'].':', $Edit));
     
    117117            $UseType = 'Enumeration';
    118118        } else $UseType = $Item['Type'];
    119         $this->Values[$Index] = ''.$System->Type->ExecuteTypeEvent($UseType, 'OnLoadDb',
     119        $this->Values[$Index] = $System->Type->ExecuteTypeEvent($UseType, 'OnLoadDb',
    120120            array('Value' => $DbRow[$Index], 'Name' => $Index,
    121             'Type' => $Item['Type'])).'';
     121            'Type' => $Item['Type']));
    122122       
    123123        //echo($DbRow[$Index].'='.$this->Values[$Index].'<br/>');
     
    150150            $UseType = 'Enumeration';
    151151        } else $UseType = $Item['Type'];
    152         $Values[$Index] = ''.$System->Type->ExecuteTypeEvent($UseType, 'OnSaveDb', $Parameters).'';
     152        $Values[$Index] = $System->Type->ExecuteTypeEvent($UseType, 'OnSaveDb', $Parameters);
    153153       
    154154        //echo($DbRow[$Index].'='.$this->Values[$Index].'<br/>');
     
    189189            $UseType = 'Enumeration';
    190190        } 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']));
    193193    }
    194194    return($Values);
Note: See TracChangeset for help on using the changeset viewer.