v3.0.0+
Status: | draft |
Progress: | 1% |
Version: | 3.0.0+ |
$smwgPagingLimit
From Linux Web Expert
Template:Interlanguagelink: en
Configuration parameter details: | |
Name | $smwgPagingLimit |
Description | Sets the number of results shown in the listings on pages in the namespace "Property", "Concept" as well as on the special pages "Special:Types" and "Special:ProcessingErrorList" |
Default setting | [[Has default::$smwgPagingLimit = [
'type' => 200, 'concept' => 200, 'property' => 50, 'errorlist' => 25,];]] |
Software | Semantic MediaWiki |
Since version | |
Until version | still available |
Configuration | Interface settings |
Keyword | interface settings · paging limit · property page · property · type page · data type · concept page · concept |
__NOBREADCRUMBLINKS__
Consolidates $smwgTypePagingLimit, $smwgConceptPagingLimit, and $smwgPropertyPagingLimit into one $smwgPagingLimit 1.
Default setting
$smwgPagingLimit = [
'type' => 200,
'concept' => 200,
'property' => 50,
'errorlist' => 25,
];
Available options
type
– sets the number of listings on pages on the spcial page special page "Types"No description was provided.. If a value of "0
" is given, the respective listings are hidden completely.concept
– sets the number of listings on pages in the namespace "Concept". If a value of "0
" is given, the respective listings are hidden completely.property
– sets the number of results shown in the listings on pages in namespace "Property". It uses a smaller value since these lists need more space and have a negative impact on performance. If a value of "0
" is given, the respective listings are hidden completely.errorlist
– sets the number of listings on the special page special page "ProcessingErrorList"No description was provided.. If a value of "0
" is given, the respective listings are hidden completely.
References
- ^ gh:smw:3231