MediaWiki  REL1_21
ViewAction.php
Go to the documentation of this file.
00001 <?php
00033 class ViewAction extends FormlessAction {
00034 
00035         public function getName() {
00036                 return 'view';
00037         }
00038 
00039         public function onView() {
00040                 return null;
00041         }
00042 
00043         public function show() {
00044                 $this->page->view();
00045         }
00046 
00047 }