mirror of
https://github.com/Universal-Omega/PortableInfobox.git
synced 2024-11-16 04:22:37 +00:00
49 lines
1.8 KiB
PHP
49 lines
1.8 KiB
PHP
<?php
|
|
|
|
/**
|
|
* Class WikiaMapsSpecialController
|
|
* @desc Special:Maps controller
|
|
*/
|
|
class PortableInfoboxBuilderSpecialController extends WikiaSpecialPageController {
|
|
const PAGE_NAME = 'PortableInfoboxBuilder';
|
|
const PAGE_RESTRICTION = 'editinterface';
|
|
const INFOBOX_BUILDER_MERCURY_ROUTE = 'infobox-builder';
|
|
const PATH_SEPARATOR = '/';
|
|
const EXPLODE_LIMIT = 2;
|
|
|
|
/**
|
|
* Special page constructor
|
|
*
|
|
* @param null $name
|
|
* @param string $restriction
|
|
* @param bool $listed
|
|
* @param bool $function
|
|
* @param string $file
|
|
* @param bool $includable
|
|
*/
|
|
public function __construct( $name = null, $restriction = '', $listed = true, $function = false, $file = 'default', $includable = false ) {
|
|
parent::__construct( self::PAGE_NAME, self::PAGE_RESTRICTION, $listed, $function, $file, $includable );
|
|
}
|
|
|
|
public function index() {
|
|
$this->wg->out->setHTMLTitle( wfMessage( 'portable-infobox-builder-title' )->text() );
|
|
$title = explode( self::PATH_SEPARATOR, $this->getPar(), self::EXPLODE_LIMIT )[ 0 ];
|
|
$noTemplateSet = empty( $title ) ? true : false;
|
|
|
|
if ( $noTemplateSet ) {
|
|
$this->wg->SuppressPageHeader = true;
|
|
$this->response->setVal( 'noTemplateSet', true );
|
|
$this->response->setVal( 'setTemplateNameCallToAction', wfMessage(
|
|
'portable-infobox-builder-no-template-title-set' )->text() );
|
|
} else {
|
|
RenderContentOnlyHelper::setRenderContentVar( true );
|
|
RenderContentOnlyHelper::setRenderContentLevel( RenderContentOnlyHelper::LEAVE_GLOBAL_NAV_ONLY );
|
|
Wikia::addAssetsToOutput( 'portable_infobox_builder_scss' );
|
|
$url = implode( self::PATH_SEPARATOR, [ $this->wg->server, self::INFOBOX_BUILDER_MERCURY_ROUTE, $title ] );
|
|
$this->response->setVal( 'iframeUrl', $url );
|
|
}
|
|
|
|
$this->response->setTemplateEngine( WikiaResponse::TEMPLATE_ENGINE_MUSTACHE );
|
|
}
|
|
}
|