Collaborative editing¶
Collaborative editing feature is available in Ibexa DXP starting with version v5.0.2 or higher, regardless of its edition.
Installation¶
Install Real-time editing feature package¶
If you have an arrangements with Ibexa to use Real-time editing feature, you need to install following package:
1 |
|
This command installs also ibexa/ckeditor-premium
package and adds the new real-time editing functionality to the Rich Text field type.
It also modifies the permission system to account for the new functionality.
Modify the bundles file¶
Then, if not using Symfony Flex, add the following code to the config/bundles.php
file:
1 2 3 4 5 6 7 |
|
Configure Collaborative editing¶
Before you can start Collaborative editing feature, you must enable it by following these instructions.
Security configuration¶
After an installation process is finished, go to config/packages/security.yaml
and make following changes:
- uncomment following lines with
shared
user provider under theproviders
key:
1 2 3 4 5 |
|
- uncomment following lines under the
ibexa_shareable_link
key:
1 2 3 4 5 6 7 8 9 10 |
|
Configuration¶
You can configure Collaborative editing per Repository.
Under ibexa.repositories.<repository_name>.collaboration
configuration key, indicate the settings for collaboration:
1 2 3 4 5 6 7 8 9 10 11 |
|
The following settings are available:
- participants:
allowed_types
- defines allowed user types, values:internal
,external
, you can set one or both of the valuesauto_invite
- determines whether invitations should be sent automatically when inviting someone to a session, default value:true
, available values:true
,false
- session:
public_link_enabled
- determines whether the public link is available, default value:false
, available values:true
,false
You can now restart you application and start working with the Collaborative editing feature.