diff --git a/docs/admin/config-options.md b/docs/admin/config-options.md index ea18104..6f320b0 100644 --- a/docs/admin/config-options.md +++ b/docs/admin/config-options.md @@ -40,6 +40,10 @@ Data Type: `Array`
Default: `60 * 60 * 24 * 90`
Data Type: `Integer`
+**enableManageAllContentPermission** - Enable the "Manage All Content" Group Permission to manage all content (view, edit, move, archive, pin, etc.), even private content.
+Default: `false`
+Data Type: `Boolean`
+ ### Comment @@ -53,14 +57,6 @@ Data Type: `Integer`
### Content -**adminCanViewAllContent** - Global admin can see all content.
-Default: `false`
-Data Type: `Boolean`
- -**adminCanEditAllContent** - Global admin can edit/delete all content.
-Default: `true`
-Data Type: `Boolean`
- **emailSubjectHourlyUpdate** - Custom e-mail subject for hourly update mails.
Default: `empty`
Data Type: `String`
diff --git a/docs/develop/content.md b/docs/develop/content.md index a58fae4..cbe34a3 100644 --- a/docs/develop/content.md +++ b/docs/develop/content.md @@ -169,10 +169,10 @@ The visibility of a content for a user can be validated by the `Content::canView - Guests can only access public content of visible spaces/users or global content if "Guest Access" is enabled - Other users can access all public content within the network -- System admins can access all content if the `adminCanViewAllContent` setting of the `content` modules is enabled (default) - All space members can read private space content - Non space members can only access public space content - Only friend users can access private profile content of a user. +- If the "Manage All Content" Group Permission is enabled ([see configuration options](https://docs.humhub.org/docs/admin/config-options#admin)), it is possible to allow the members of certain Groups to manage all content (view, edit, move, archive, pin, etc.), even private content. ```php if(!$model->content->canView()) {