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