Changeset 874 for trunk/Common/Form/Form.php
- Timestamp:
- Apr 6, 2020, 11:56:19 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Common/Form/Form.php
r873 r874 113 113 $Output = '<fieldset><legend>'.$this->Definition['Title'].'</legend>'.Table($Table). 114 114 '</fieldset>'; 115 return ($Output);115 return $Output; 116 116 } 117 117 … … 122 122 '<div><input name="submit" type="submit" value="'.$this->Definition['SubmitText'].'" /> '. 123 123 '<input type="button" value="Zrušit" onclick="location.href=\'?\'"/></div></form>'; 124 return ($Output);124 return $Output; 125 125 } 126 126 … … 316 316 } 317 317 } 318 return ($Values);318 return $Values; 319 319 } 320 320 … … 353 353 } 354 354 if ($Valid == false) throw new Exception('not validated'); 355 return ($Valid);355 return $Valid; 356 356 } 357 357 } … … 360 360 function MakeLink($Target, $Title) 361 361 { 362 return ('<a href="'.$Target.'">'.$Title.'</a>');362 return '<a href="'.$Target.'">'.$Title.'</a>'; 363 363 } 364 364 … … 384 384 } 385 385 $Result .= '</table>'; 386 return ($Result);386 return $Result; 387 387 } 388 388
Note:
See TracChangeset
for help on using the changeset viewer.