MediaWiki  REL1_20
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                 $this->page->view();
00038         }
00039 
00040 }