Changeset 11 for trunk/class/Gui.php
- Timestamp:
- Jun 19, 2012, 10:26:04 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/class/Gui.php
r9 r11 13 13 private $Language; 14 14 15 function __construct( )15 function __construct($User) 16 16 { 17 17 $this->Config = new Config(); … … 23 23 24 24 //have to be after inicialization of pages 25 $this->Feedback( );25 $this->Feedback($User); 26 26 } 27 27 … … 39 39 40 40 //gets feedback from post and get 41 private function Feedback() { 42 $this->Messages->GetPost(); 43 $this->Messages->GetGet(); 41 private function Feedback($User) { 42 $this->Messages->RegMess($User); 44 43 $this->ActivePage = $this->Messages->WhichPage($this->Pages); 45 44 } … … 65 64 '<head>'. 66 65 '<meta http-equiv="content-type" content="application/xhtml+xml; charset='.$this->Config->Web['Charset'].'" />'. 67 '<meta name="keywords" content="virtualizace, virtuálnÃ, server, hosting, webhosting, web " />'.66 '<meta name="keywords" content="virtualizace, virtuálnÃ, server, hosting, webhosting, web, virtualization" />'. 68 67 '<meta name="description" content="'.$this->Config->Web['Title'].'" />'. 69 68 '<meta name="robots" content="all" />'. … … 80 79 echo('</td>'. 81 80 '</tr><tr>'. 82 '<td colspan="4" class="page-bottom"> AutoÅi: '.$this->Config->Web['Authors'].' '.$this->Links['SourceCode']->Get().'');81 '<td colspan="4" class="page-bottom">'.$this->Language->Texts['autors'].': '.$this->Config->Web['Authors'].' '.$this->Links['SourceCode']->Get().''); 83 82 84 83 echo('</td></tr>');
Note:
See TracChangeset
for help on using the changeset viewer.