====== disableactionsbygroup Plugin ====== ---- plugin ---- description: Allows you to disable actions for particular user groups author : adron email : type : action lastupdate : 2018-12-28 compatible : elenor of tsort, Greebo depends : conflicts : similar : hidemenus, denyactions tags : authentication, disable-actions, hide-menus, cms downloadurl: https://github.com/adron1111/disableactionsbygroup/zipball/master bugtracker : https://github.com/adron1111/disableactionsbygroup/issues sourcerepo : https://github.com/adron1111/disableactionsbygroup/ donationurl: screenshot_img : ---- ===== Installation ===== Search and install the plugin using the [[plugin:extension|Extension Manager]]. Refer to [[:Plugins]] on how to install plugins manually. ===== Examples/Usage ===== Set up a list of actions to disable by group in the plugin configuration settings, such as: admin:;author:;user:edit,media,diff,source,backlinks This will cause members of the admin and author groups to have no actions restricted; members of the user group will have edit, media, diff, source and backlinks restricted, and other users or people not logged in will have whatever settings you specified in the disableactions generic config setting. ===== Syntax ===== groupname1:action1,action2,action3,...;groupname2:action1,action2,action3,... groupname1, groupname2, etc are user groups. The order in which groups are specified is significant; only the first match found applies to any particular user. action1, action2, action3, etc are actions, as listed on [[devel:action_modes|action modes]] ===== Configuration and Settings ===== ===== Development ===== ==== Change Log ==== {{rss>https://github.com/adron1111/disableactionsbygroup/commits/master.atom date}} ==== Known Bugs and Issues ==== This plugin will not work if trustExternal is used for authentication. https://github.com/adron1111/disableactionsbygroup/issues ==== ToDo/Wish List ==== * More structured configuration * Make it work for remote groups (AD/LDAP) ===== FAQ ===== ===== Discussion ===== ==== Restrictions to ALL group ==== Does this plugin work when applied to the "ALL" group? It doesn't seem like it. If I am right... is there any way to apply action restrictions to this group (vistors who are not logged in)? In my config I added: admin:;user:edit,revisions,export_raw,export_xhtml,export_xhtmlbody;all:edit,revisions,export_raw,export_xhtml,export_xhtmlbody The restrictions work fine for a logged-in user but not for ALL (non logged-in visitor). Thanks in advance for any relevant information --- [[user>Branmabon Kaesgard|Branmabon Kaesgard]] //2017-02-25 17:42// > Hi! The default [[doku>config:disableactions|settings]] are responsible for disabling actions to the @ALL. The settings of this plugin override all available actions for groups. ==== rc-2020-06-09 "Hogfather" RC3 ==== Hey guys just installed this plugin and got a 500er white screen of death, here is the fix (seems like a typo?): Change public function register(Doku_Event_Handler &$controller) To public function register(Doku_Event_Handler $controller) --- [[user>retroman|retroman]] //2020-07-18 15:33// And $this->disablebygroupids(array('ALL')); return; To { $this->disablebygroupids(array('ALL')); return; }