Manual:$wgResourceLoaderLESSVars/pl
Ta funkcja została całkowicie usunięta z jądra MediaWiki w wersji 1.32.0. |
ResourceLoader: $wgResourceLoaderLESSVars | |
---|---|
Global LESS variables. |
|
Wprowadzono w wersji: | 1.22.0 (Gerrit change 78669; git #Id052a04) |
Przestarzałe w wersji: | 1.30.0 (Gerrit change 366990; git #I61cff1d) |
Usunięto w wersji: | 1.32.0 (Gerrit change 451648; git #If708087) |
Dozwolone wartości: | (array) |
Domyślna wartość: | Patrz poniżej |
Inne ustawienia: Alfabetycznie | Według funkcji |
Szczegóły
An associative array binding variable names to LESS code snippets representing their values.
Removed in v1.31 due to concerns about allowing unmaintainable cross-dependencies. Custom ResourceLoaderModule
subclasses can override the getLessVars()
method instead.
Adding an item here is equivalent to writing @variable: value;
at the beginning of all your .less files, with all the consequences.
In particular, string values must be escaped and quoted.
Changes to this configuration do NOT trigger cache invalidation.
Przykład
$wgResourceLoaderLESSVars = [
'exampleFontSize' => '1em',
'exampleBlue' => '#eee',
];
Default value
Wersje MediaWiki: | 1.27 – 1.31 |
$wgResourceLoaderLESSVars = [
/**
* Minimum available screen width at which a device can be considered a tablet
* The number is currently based on the device width of a Samsung Galaxy S5 mini and is low
* enough to cover iPad (768px). Number is prone to change with new information.
* @since 1.27
* @deprecated 1.31 Use mediawiki.ui/variables instead
*/
'deviceWidthTablet' => '720px',
];
Wersje MediaWiki: | 1.22 – 1.26 |
$wgResourceLoaderLESSVars = array();
Zobacz też
- ResourceLoaderGetLessVars - a hook with similar functionality (now also removed)