Extension:Bootstrap/bn
![]() মুক্তির অবস্থা: স্থিতিশীল |
|
---|---|
বাস্তবায়ন | আবরণ |
বিবরণ | Provides the Bootstrap 4 web front-end framework |
লেখক(গণ) | Stephan Gambke (F.trottআলোচনা) |
রক্ষণাবেক্ষণকারী(গণ) | Professional Wiki |
সর্বশেষ সংস্করণ | 4.6.0 (2022-03-30) |
সমর্থন নীতি | Master maintains backward compatibility. |
MediaWiki | 1.29+ |
PHP | 5.6+ |
ডাটাবেজ পরিবর্তন | না |
Composer | mediawiki/bootstrap |
লাইসেন্স | গ্নু জেনারেল পাবলিক লাইসেন্স ৩.০ অথবা পরবর্তী |
ডাউনলোড | GitHub: Note: README on GitHub Changelog on GitHub |
Quarterly downloads | 0 |
Public wikis using | 380 (Ranked 337th) |
The Bootstrap extension provides the Bootstrap 4 (version 4.6.1) web front-end framework to MediaWiki. It can be activated directly or used from skins or extensions.
ইনস্টলেশন
See the installation instructions for information on how to install this extension.
ব্যবহার
Within a skin
Use \Bootstrap\BootstrapManager::getInstance()
to get the singleton managing the Bootstrap framework.
With the returned object,
- add Bootstrap modules using
addBootstrapModule()
,addCoreBootstrapModules()
, andaddAllBootstrapModules()
- set SCSS variables using
setScssVariable()
andsetScssVariables()
- add style files using
addStyleFile()
- add cache trigger files using
addCacheTriggerFile()
Finally to add the Bootstrap styles and javascript to the page use $out->addModuleStyles( 'ext.bootstrap.styles' )
for styles and $out->addModules( 'ext.bootstrap.scripts' )
for scripts.
For an example on how to include Bootstrap styles in a skin have a look at the Chameleon skin.
Standalone
To simply enable Bootstrap styles on all pages add the following code to your "LocalSettings.php" file:
$wgHooks['SetupAfterCache'][] = function(){
\Bootstrap\BootstrapManager::getInstance()->addAllBootstrapModules();
return true;
};
$wgHooks['ParserAfterParse'][]=function( Parser &$parser, &$text, StripState &$stripState ){
$parser->getOutput()->addModuleStyles( ['ext.bootstrap.styles'] );
$parser->getOutput()->addModules( ['ext.bootstrap.scripts'] );
return true;
};
Known issues
Effect on Universal Language Selector
If you have the Universal Language Selector (ULS) extension installed, installing the Bootstrap extension will make the ULS's dropdown-menu look disordered and break its search bar (screenshot on GitHub). However, this can be fixed by adding the following code to MediaWiki:Common.css:
.uls-language-list {
display: block;
}
.uls-search {
display: block;
}
আরও দেখুন
- the Bootstrap framework homepage
- the SASS/SCSS homepage
- the Chameleon skin that uses this extension
- the BootstrapComponents extension that uses this extension and lets editors utilize its potential inside wiki markup
![]() | This extension is included in the following packages and/or wiki farms: This is not an authoritative list. Some wiki farms/hosts may contain this extension even if they are not listed here. Always check with your wiki farms/hosts or bundle to confirm. |
- Stable extensions/bn
- Skin extensions/bn
- Extensions supporting Composer/bn
- GPL licensed extensions/bn
- Extensions in GitHub version control/bn
- SetupAfterCache extensions/bn
- All extensions/bn
- Extensions included in BlueSpice/bn
- Extensions included in Canasta/bn
- Extensions included in MyWikis/bn
- Extensions included in ProWiki/bn
- Extensions included in semantic::core/bn
- Extensions by Professional Wiki/bn