Changeset 874 for trunk/Modules/Portal/Portal.php
- Timestamp:
- Apr 6, 2020, 11:56:19 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Modules/Portal/Portal.php
r873 r874 64 64 $Output .= $this->System->ShowAction($Action['Id']).'<br/>'; 65 65 } 66 return ($this->Panel($ActionGroup['Name'], $Output));66 return $this->Panel($ActionGroup['Name'], $Output); 67 67 } 68 68 … … 109 109 110 110 $Output = '<div class="Navigation"><span class="MenuItem">'.$Output.'</span><div class="MenuItem2"> '.$Output2.'</div></div>'; 111 return ($Output);111 return $Output; 112 112 } 113 113 … … 129 129 if ($this->System->User->CheckPermission('IS', 'Manage')) 130 130 $Output .= '<a href="'.$this->System->Link('/is/').'">Správa dat</a><br />'; 131 return ($Output);131 return $Output; 132 132 } 133 133 … … 135 135 { 136 136 $Output = $this->System->ModuleManager->Modules['WebCam']->ShowImage(); 137 return ($Output);137 return $Output; 138 138 } 139 139 … … 141 141 { 142 142 $Output = '<a href="https://stat.zdechov.net/meteo/?Measure=28" title="Klikněte pro detailní informace a předpověď"><img src="https://www.zdechov.net/meteo/koliba.png" border="0" alt="Počasí - Meteostanice Zděchov" width="150" height="150" /></a>'; 143 return ($Output);143 return $Output; 144 144 } 145 145 … … 155 155 } 156 156 $Output .= '</span>'; 157 return ($Output);157 return $Output; 158 158 } 159 159 … … 167 167 } 168 168 $Output .= '</span>'; 169 return ($Output);169 return $Output; 170 170 } 171 171 … … 175 175 foreach ($Menu as $Item) 176 176 $Title .= '<div class="Action">'.$Item.'</div>'; 177 return ('<div class="Panel"><div class="Title">'.$Title.'</div><div class="Content">'.$Content.'</div></div>');177 return '<div class="Panel"><div class="Title">'.$Title.'</div><div class="Content">'.$Content.'</div></div>'; 178 178 } 179 179 … … 243 243 } 244 244 } else $Output = $this->ShowMain(); 245 return ($Output);245 return $Output; 246 246 } 247 247 … … 280 280 } 281 281 $Output .= '</tr></table>'; 282 return ($Output);282 return $Output; 283 283 } 284 284 }
Note:
See TracChangeset
for help on using the changeset viewer.