MediaWiki  REL1_24
MockApi.php
Go to the documentation of this file.
00001 <?php
00002 
00003 class MockApi extends ApiBase {
00004     public function execute() {
00005     }
00006 
00007     public function getVersion() {
00008     }
00009 
00010     public function __construct() {
00011     }
00012 
00013     public function getAllowedParams() {
00014         return array(
00015             'filename' => null,
00016             'enablechunks' => false,
00017             'sessionkey' => null,
00018         );
00019     }
00020 }