mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/MinervaNeue
synced 2024-11-12 08:58:25 +00:00
Merge "README should document all config"
This commit is contained in:
commit
5f4a4e53a0
63
README.md
63
README.md
|
@ -52,6 +52,18 @@ If 1, all errors will be logged to the EventLogging client, thus when enabling t
|
|||
care should be taken that your setup is bug free in order to not overwhelm the EventLogging
|
||||
server.
|
||||
|
||||
#### $wgMinervaShowCategoriesButton
|
||||
|
||||
* Type: `Array`
|
||||
* Default:
|
||||
```php
|
||||
[
|
||||
'base' => false,
|
||||
'beta' => true,
|
||||
]
|
||||
```
|
||||
Controls whether the category button should be displayed.
|
||||
|
||||
#### $wgMinervaApplyKnownTemplateHacks
|
||||
|
||||
* Type: `Boolean`
|
||||
|
@ -67,6 +79,57 @@ When enabled and hacks.less exists, hacks.less workarounds are included in style
|
|||
Controls which page actions, if any, are displayed. Allowed: `edit`, `watch`, `talk`, and
|
||||
`switch-language`.
|
||||
|
||||
|
||||
#### $wgMinervaPageIssuesNewTreatment
|
||||
|
||||
* Type: `Array`
|
||||
* Default:
|
||||
```php
|
||||
[
|
||||
'base' => false,
|
||||
'beta' => true,
|
||||
]
|
||||
```
|
||||
Controls whether page issues should be replaced with a "Page issues" link (false) or displayed inline (true).
|
||||
|
||||
#### $wgMinervaTalkAtTop
|
||||
|
||||
* Type: `Array`
|
||||
* Default:
|
||||
```php
|
||||
[
|
||||
'beta' => false,
|
||||
'base' => false,
|
||||
'amc' => true,
|
||||
]
|
||||
```
|
||||
Controls whether the talk option should be displayed at the top of the page.
|
||||
This will work for all pages except the main page.
|
||||
|
||||
#### $wgMinervaShowShareButton
|
||||
|
||||
* Type: `Array`
|
||||
* Default:
|
||||
```php
|
||||
[
|
||||
'beta' => false,
|
||||
'base' => false,
|
||||
]
|
||||
```
|
||||
Controls whether the share feature should be added to the page actions menu.
|
||||
|
||||
#### $wgMinervaEnableBackToTop
|
||||
|
||||
* Type: `Array`
|
||||
* Default:
|
||||
```php
|
||||
[
|
||||
'base' => false,
|
||||
'beta' => true,
|
||||
]
|
||||
```
|
||||
Controls whether the a back to top button should appear in the bottom right of the screen when scrolling.
|
||||
|
||||
#### $wgMinervaCustomLogos
|
||||
|
||||
* Type: `Array`
|
||||
|
|
Loading…
Reference in a new issue