Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | |
0.00% |
0 / 4 |
|
0.00% |
0 / 1 |
CRAP | |
0.00% |
0 / 1 |
| StoryEditAction | |
0.00% |
0 / 4 |
|
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 1 |
| show | |
0.00% |
0 / 4 |
|
0.00% |
0 / 1 |
2 | |||
| 1 | <?php |
| 2 | |
| 3 | namespace MediaWiki\Extension\Wikistories; |
| 4 | |
| 5 | use MediaWiki\Actions\EditAction; |
| 6 | |
| 7 | class StoryEditAction extends EditAction { |
| 8 | |
| 9 | public function show() { |
| 10 | $this->useTransactionalTimeLimit(); |
| 11 | $editPage = new StoryEditPage( $this->getArticle() ); |
| 12 | $editPage->setContextTitle( $this->getTitle() ); |
| 13 | $editPage->edit(); |
| 14 | } |
| 15 | |
| 16 | } |