Status: | effective |
Progress: | 100% |
Version: | 3.0.0+ |
$smwgBrowseFeatures
Configuration parameter details: | |
Name | $smwgBrowseFeatures |
Description | Property "Has description" (as page type) with input value "Sets the behaviour of the features provided by several [[Help:Browsing interfaces|browsing interfaces" contains invalid characters or is incomplete and therefore can cause unexpected results during a query or annotation process. |
Default setting | See below |
Software | Has component::Semantic MediaWiki |
Since version | |
Until version | still available |
Configuration | Interface settings · Facts display |
Keyword | special page · browsing · interface |
__NOBREADCRUMBLINKS__
$smwgBrowseFeatures
is a configuration parameter that sets the behaviour of the features provided by several browsing interfaces. The configuration parameter was introduced in Semantic MediaWiki 3.0.0Released on an unknown date unknown versions of MediaWiki1 and deprecated the configuration parameters as indicated in the section on available options below.
Default setting
$smwgBrowseFeatures = SMW_BROWSE_TLINK | SMW_BROWSE_SHOW_INCOMING | SMW_BROWSE_SHOW_GROUP | SMW_BROWSE_USE_API;
This means that the four respective features as explained in the following sections on available options are enabled.
Available options
SMW_BROWSE_NONE
– Disables features to browsing interfacesSMW_BROWSE_TLINK
– Sets that the toolbox of each content page shows a link to browse the properties of that page using special page "Browse"No description was provided.
- This option replaces configuration parameter
$smwgToolboxBrowseLink
No description was provided..
SMW_BROWSE_SHOW_INVERSE
– Sets that the browse view for incoming links on special page special page "Browse"No description was provided. should show the incoming links inverse to the reverse view
- This option replaces configuration parameter
$smwgBrowseShowInverse
No description was provided..
SMW_BROWSE_SHOW_INCOMING
– Sets that the browse view for incoming links on special page "Browse"No description was provided. should show the incoming links
- This option replaces configuration parameter
$smwgBrowseShowAll
No description was provided..
SMW_BROWSE_SHOW_GROUP
– Sets that the view of created group sections shows for properties that belong to the same property group2SMW_BROWSE_SHOW_SORTKEY
– Sets that sortkey influenced by the magic wordsDISPLAYTITLE
,DEFAULTSORT
etc. should be shown3SMW_BROWSE_USE_API
– Sets that the browse display is to be generated using an API request
- This option replaces configuration parameter
$smwgBrowseByApi
No description was provided..
Changing the default setting
To modify the setting to this configuration parameter, add one of the following lines to your "LocalSettings.php" file after the enableSemantics()
call:
- Removing a specific browsing feature
To disable a specific feature e.g. that the toolbox of each content page shows a link to browse the properties of that page using special page "Browse"No description was provided. just redefine the configuration parameter by defining it without including the corresponding constant as shown in the above section on available options:
$smwgBrowseFeatures = SMW_BROWSE_SHOW_INCOMING | SMW_BROWSE_USE_API;
or alternatively remove the option from the existing definition of the configuration parameter like e.g.
$smwgBrowseFeatures = ( $smwgBrowseFeatures & ~SMW_BROWSE_TLINK );
- Adding a specific browsing feature
To enable a specific feature e.g. incoming links on special page special page "Browse"No description was provided. should show the incoming links inverse to the reverse view, just redefine the configuration parameter by defining it including the corresponding constant as shown in the above section on available options:
$smwgBrowseFeatures = SMW_BROWSE_TLINK | SMW_BROWSE_SHOW_INCOMING | SMW_BROWSE_SHOW_GROUP | SMW_BROWSE_USE_API | SMW_BROWSE_SHOW_INVERSE ;
or alternatively add the option to the existing definition of the configuration parameter like e.g.
$smwgBrowseFeatures = $smwgBrowseFeatures | SMW_BROWSE_SHOW_INVERSE;
- Disabling all browsing features
To disable all browse features just remove all constants as shown in the above section on available options:
$smwgBrowseFeatures = '';
or add the constant for disabling all browse features
$smwgBrowseFeatures = SMW_BROWSE_NONE;
See also
- Help page on browsing interfaces
- Help page on special page "Browse"No description was provided.
- Help page on configuration parameter
$smwgToolboxBrowseLink
No description was provided. - Help page on configuration parameter
$smwgBrowseShowInverse
No description was provided. - Help page on configuration parameter
$smwgBrowseShowAll
No description was provided. - Help page on configuration parameter
$smwgBrowseByApi
No description was provided.