MediaWiki  REL1_24
IncludableSpecialPage.php
Go to the documentation of this file.
00001 <?php
00029 class IncludableSpecialPage extends SpecialPage {
00030     function __construct(
00031         $name, $restriction = '', $listed = true, $function = false, $file = 'default'
00032     ) {
00033         parent::__construct( $name, $restriction, $listed, $function, $file, true );
00034     }
00035 
00036     public function isIncludable() {
00037         return true;
00038     }
00039 }