Changeset 494 for trunk/Common/Page.php
- Timestamp:
- Mar 1, 2013, 10:44:18 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Common/Page.php
r493 r494 149 149 '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">'. 150 150 '<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="cs" lang="cs">'. 151 '<head><link rel="stylesheet" href="'.$this->System-> Config['Web']['RootFolder'].'/style/'.$this->System->Config['Web']['Style'].'/style.css" type="text/css" media="all" />'.151 '<head><link rel="stylesheet" href="'.$this->System->Link('/style/').$this->System->Config['Web']['Style'].'/style.css" type="text/css" media="all" />'. 152 152 '<meta http-equiv="content-type" content="application/xhtml+xml; charset='.$this->System->Config['Web']['Charset'].'" />'. 153 '<script type="text/javascript" src="'.$this->System-> Config['Web']['RootFolder'].'/style/'.$this->System->Config['Web']['Style'].'/global.js"></script>'.153 '<script type="text/javascript" src="'.$this->System->Link('/style/').$this->System->Config['Web']['Style'].'/global.js"></script>'. 154 154 '<title>'.$this->System->Config['Web']['Title'].' - '.$Path.'</title> 155 155 </head><body'.$BodyParam.'> … … 159 159 { 160 160 if($this->System->Modules['User']->User['Id'] == null) 161 $Output .= '<a href="'.$this->System-> Config['Web']['RootFolder'].'/?Action=LoginForm">Přihlášení</a> <a href="'.$this->System->Config['Web']['RootFolder'].'/?Action=UserRegister">Registrace</a>';162 else $Output .= $this->System->Modules['User']->User['Name'].' <a href="'.$this->System-> Config['Web']['RootFolder'].'/?Action=Logout">Odhlásit</a>';161 $Output .= '<a href="'.$this->System->Link('/?Action=LoginForm').'">Přihlášení</a> <a href="'.$this->System->Link('/?Action=UserRegister').'">Registrace</a>'; 162 else $Output .= $this->System->Modules['User']->User['Name'].' <a href="'.$this->System->Link('/?Action=Logout').'">Odhlásit</a>'; 163 163 } else $Output .= ' '; 164 164 // <a href="'.$this->System->Config['Web']['RootFolder'].'/?Action=UserOptions">Nastavení</a>';
Note:
See TracChangeset
for help on using the changeset viewer.