Changeset 941 for trunk/Common/Form/Form.php
- Timestamp:
- Aug 2, 2022, 5:41:41 PM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Common/Form/Form.php
r923 r941 83 83 $Item = $this->Definition['Items'][$Index]; 84 84 $UseType = $this->GetItemType($Item); 85 return $this->FormManager->Type->ExecuteTypeEvent($UseType, $Event, 85 86 $Result = $this->FormManager->Type->ExecuteTypeEvent($UseType, $Event, 86 87 array('Value' => $this->Values[$Index], 'Name' => $Index, 87 88 'Type' => $Item['Type'], 'Values' => $this->Values, 88 89 'Filter' => $this->Values[$Index])); 90 if ($Result == null) return ''; 91 return $Result; 89 92 } 90 93
Note:
See TracChangeset
for help on using the changeset viewer.