mirror of
https://github.com/Universal-Omega/PortableInfobox.git
synced 2024-11-15 11:59:56 +00:00
23 lines
644 B
PHP
23 lines
644 B
PHP
<?php
|
|
|
|
class SpecialPortableInfoboxBuilder extends SpecialPage {
|
|
public function __construct() {
|
|
$restriction = $this->getConfig()->get( 'NamespaceProtection' )[NS_TEMPLATE][0] ?? '';
|
|
parent::__construct( 'PortableInfoboxBuilder', $restriction );
|
|
}
|
|
|
|
public function execute( $par ) {
|
|
$out = $this->getOutput();
|
|
|
|
$this->setHeaders();
|
|
$out->enableOOUI();
|
|
|
|
$out->addModules( [ 'ext.PortableInfobox.styles', 'ext.PortableInfoboxBuilder' ] );
|
|
$out->addHTML(
|
|
'<div id="mw-infoboxbuilder" data-title="' . str_replace( '"', '"', $par ) . '">' .
|
|
new OOUI\ProgressBarWidget( [ 'progress' => false ] ) .
|
|
'</div>'
|
|
);
|
|
}
|
|
}
|