
Öffentliche Methoden | |
| show () | |
Öffentliche Attribute | |
| $defaultSubAction = 'show' | |
Definiert in Zeile 101 der Datei BorderAction.class.php.
| BorderAction::show | ( | ) |
Definiert in Zeile 105 der Datei BorderAction.class.php.
Benutzt $conf, Action::forward(), Session::getUser(), Action::lastModified(), Action::maxAge() und Action::setTemplateVar().
00106 { 00107 global $conf; 00108 global $PHP_AUTH_USER; 00109 global $PHP_AUTH_PW; 00110 00111 $user = Session::getUser(); 00112 00113 // Seite ändert sich nur 1x pro Session 00114 $this->lastModified( $user->loginDate ); 00115 00116 $this->setTemplateVar( 'stylesheet',$user->style ); 00117 $this->setTemplateVar( 'css_body_class','border' ); 00118 00119 $this->maxAge( 4*60*60 ); // 1 Stunde Browsercache 00120 00121 $this->forward( 'border' ); 00122 }
| BorderAction::$defaultSubAction = 'show' |
Definiert in Zeile 103 der Datei BorderAction.class.php.
1.5.8