MediaWiki
REL1_19
|
00001 <?php 00026 class DeleteAction extends FormlessAction { 00027 00028 public function getName() { 00029 return 'delete'; 00030 } 00031 00032 public function onView(){ 00033 return null; 00034 } 00035 00036 public function show(){ 00037 00038 $this->page->delete(); 00039 00040 } 00041 00042 }