MediaWiki  REL1_24
FormlessAction.php
Go to the documentation of this file.
00001 <?php
00028 abstract class FormlessAction extends Action {
00029 
00035     abstract public function onView();
00036 
00037     public function show() {
00038         $this->setHeaders();
00039 
00040         // This will throw exceptions if there's a problem
00041         $this->checkCanExecute( $this->getUser() );
00042 
00043         $this->getOutput()->addHTML( $this->onView() );
00044     }
00045 }