Vor_tex
Гуру MediaWiki
- Регистрация
- 17.12.2014
- Сообщения
- 123
- Реакции
- 19
получается нужно создать типа расширение с содержимым типаВот это можно попробовать: https://www.examsmyantra.com/articl...module-to-work-with-mobile-frontend-extension
Код:
<?php
if ( !defined( 'MEDIAWIKI' ) ) {
die( 'This file is a MediaWiki extension, it is not a valid entry point' );
}
$wgResourceModules['ext.makeCollapsible'] = array(
"scripts"=>"resources/js/jquery.makeCollapsible.js",
"dependencies"=>array("jquery"),
'localBasePath'=> __DIR__,
'remoteExtpath'=>'makeCollapsible'
);
$wgResourceModules['ext.makeCollapsible.mobile'] = $wgResourceModules['ext.makeCollapsible'] + array(
'targets' => 'mobile',
);
function efEnableMobileModules( $out, $mode ) {
$name = 'ext.makeCollapsible.mobile';
$out->addModules( $name );
return true;
}
$wgHooks['EnableMobileModules'][] = 'efEnableMobileModules';
?>
и через локалсетингс его подключить,