Frontendlogic
Per default, there is a subplugin which adds the possibility to select protected categories, which are allowed to view by a frontenduser group.Old plugin which was used to check category rights
Pseudo plugin
This plugin is a pseudo plugin. This means it is not really a plugin, because it has no plugin.xml and can not be managed via the plugin manager. It remained after porting the normal plugins to the plugin structure. Because this plugin is technically a set of subplugins relating to one topic, it was not ported to the official structure and is included and active everytime.
Structure
A frontendlogic subplugin must add a new directory with a unique name in the directory plugins/frontendlogic. The name of the folder must also be the name of a PHP file, which later contains a class. This class must be named "frontendlogic_NAME" where "NAME" is the name of the directory / PHP file. The class must extend the core class "FrontendLogic" and implement the following methods:
Method name | Description | Expected return value |
---|---|---|
getFriendlyName | Returns the name of the sub plugins | string |
listActions | Returns an array with actions to manage | array |
listItems | Returns an array with the items to manage | array |
For an example, have a look for frontendlogic/category/category.php
Plugin configuration
Plugin configuration values can be defined as key value pairs of the array $cfg['plugin'].
$cfg['plugin'][<name>] = <value>;
Name | Default | Description | Location | Since |
---|---|---|---|---|
frontendlogic | array('category') | Â | Â | Â |