MediaWiki  REL1_19
ViewAction.php
Go to the documentation of this file.
00001 <?php
00026 class ViewAction extends FormlessAction {
00027 
00028         public function getName() {
00029                 return 'view';
00030         }
00031 
00032         public function onView(){
00033                 return null;
00034         }
00035 
00036         public function show(){
00037                 global $wgSquidMaxage;
00038 
00039                 $this->getOutput()->setSquidMaxage( $wgSquidMaxage );
00040                 $this->page->view();
00041         }
00042 
00043 }