Changeset 114 for trunk/Modules/Portal
- Timestamp:
- May 1, 2016, 11:13:57 PM (9 years ago)
- Location:
- trunk/Modules/Portal
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Modules/Portal/UModulePortal.pas
r108 r114 253 253 254 254 TitleTag := THtmlString.Create; 255 TitleTag.Text := ShowHeader(ASession);255 //TitleTag.Text := ShowHeader(ASession); 256 256 HtmlDocument.Body.SubItems.Insert(0, TitleTag); 257 257 TitleTag := THtmlString.Create; 258 258 TitleTag.Text := ShowFooter(ASession); 259 HtmlDocument.Body.SubItems. Add(TitleTag);259 HtmlDocument.Body.SubItems.Insert(0, TitleTag); 260 260 //Page.Page.OnProduce(HandlerData); 261 261 HtmlDocument.Title := Page.Caption; … … 275 275 function TModulePortal.ShowFooter(Session: TWebSession): string; 276 276 begin 277 Result := ''; 277 278 //Time := Round(Now - $ScriptTimeStart, 2); 278 279 Result := Result + '<div id="Footer">' + -
trunk/Modules/Portal/UPagePortal.pas
r107 r114 231 231 // Show pannels 232 232 //if(IsInternetAddr()) echo('Internet'); else echo('LAN'); 233 // $Output .= $this->InfoBar();233 // $Output .= $this->InfoBar(); 234 234 Output := Output + '<table id="MainTable"><tr>'; 235 235 Session.Database.Select(DbRows, 'PanelColumn', '*'); … … 275 275 function TWebPagePortal.OnlineHostList: string; 276 276 begin 277 277 Result := ''; 278 278 end; 279 279 280 280 function TWebPagePortal.UserPanel: string; 281 281 begin 282 282 Result := ''; 283 283 end; 284 284 … … 299 299 function TWebPagePortal.WebcamPanel: string; 300 300 begin 301 301 Result := ''; 302 302 end; 303 303
Note:
See TracChangeset
for help on using the changeset viewer.