Changeset 874 for trunk/Common/VCL
- Timestamp:
- Apr 6, 2020, 11:56:19 PM (5 years ago)
- Location:
- trunk/Common/VCL
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Common/VCL/Database.php
r873 r874 66 66 $ListView->Rows[] = $Row; 67 67 $Output = parent::Show(); 68 return ($Output);68 return $Output; 69 69 } 70 70 } -
trunk/Common/VCL/General.php
r873 r874 15 15 if ($Persistent) $_SESSION[$Name] = $Result; 16 16 } 17 return ($Result);17 return $Result; 18 18 } 19 19 … … 34 34 $Output = ''; 35 35 //$Output .= '#'.$this->Id; 36 return ($Output);36 return $Output; 37 37 } 38 38 … … 53 53 foreach ($this->Items as $Item) 54 54 $Output .= $Item->Show(); 55 return ($Output);55 return $Output; 56 56 } 57 57 } … … 72 72 if ($this->Visible) 73 73 { 74 return (parent::Show().'<button>'.$this->Caption.'</button>');74 return parent::Show().'<button>'.$this->Caption.'</button>'; 75 75 } 76 76 } … … 83 83 function Show() 84 84 { 85 return (parent::Show().'<input type="text" name="'.$this->Id.'" value="'.$this->Text.'"/>');85 return parent::Show().'<input type="text" name="'.$this->Id.'" value="'.$this->Text.'"/>'; 86 86 } 87 87 … … 119 119 } 120 120 $Output .= '<br/>'; 121 return ($Output);121 return $Output; 122 122 } 123 123 … … 134 134 function Show() 135 135 { 136 return ($this->Name);136 return $this->Name; 137 137 } 138 138 } … … 170 170 } 171 171 $Output .= '</table>'; 172 return ($Output);172 return $Output; 173 173 } 174 174 } … … 192 192 function ColumnClick($Column) 193 193 { 194 return ('?'.$this->Id.'_SortColumn='.$Column->Id.'&'.$this->Id.'_SortOrder='.(1 - $this->SortOrder));194 return '?'.$this->Id.'_SortColumn='.$Column->Id.'&'.$this->Id.'_SortOrder='.(1 - $this->SortOrder); 195 195 } 196 196 … … 208 208 if ($this->OnColumnClick != '') 209 209 $Output = '<a href="'.call_user_func($this->OnColumnClick, $Column).'">'.$Output.'</a>'; 210 return ($Output);210 return $Output; 211 211 } 212 212 … … 219 219 $Output .= parent::Show(); 220 220 $Output .= $this->PageSelect->Show(); 221 return ($Output);221 return $Output; 222 222 } 223 223 … … 251 251 } 252 252 $Output .= '</table>'; 253 return ($Output);253 return $Output; 254 254 } 255 255 … … 279 279 $Output = '<a href="?'.$Link.'">'.$Output.'</a>'; 280 280 }; 281 return ($Output);281 return $Output; 282 282 } 283 283 … … 301 301 $Output .= $Item->Show(); 302 302 $Output .= '</body></html>'; 303 return ($Output);303 return $Output; 304 304 } 305 305
Note:
See TracChangeset
for help on using the changeset viewer.