Skip to content

Permissions

Permission overview

A new User does not have permissions for any part of the system, unless they are explicitly given access. To get access they need to inherit Roles, typically assigned to the User Group they belong to.

Each Role can contain one or more Policies. A Policy is a rule that gives access to a single function in a module. For example, a section/assign Policy allows the User to assign content to Sections.

When you add a Policy to a Role, you can also restrict it using one or more Limitations. A Policy with a Limitation will only apply when the condition in the Limitation is fulfilled. For example, a content/publish Policy with a ContentType Limitation on the "Blog Post" Content Type will allow the User to publish only Blog Posts, and not other content.

A Limitation, like a Policy, specifies what a User can do, not what they can't do. A Section Limitation, for example, gives the User access to the selected Section, not prohibits it.

See Available Limitations for further information and Permission use cases for example permission setups.

Combining Policies

Policies on one Role are connected with the and relation, not or, so when Policy has more than one Limitation, all of them have to apply.

If you want to combine more than one Limitation with the or relation, not and, you can split your Policy in two, each with one of these Limitations.

Assigning Roles to Users

Every User or User Group can have many roles. A User can also belong to many groups, for example, Administrators, Editors, Subscribers.

It is best practice to avoid assigning Roles to users directly. Instead, try to organize your content so that it can be covered with general Roles assigned to User Groups.

Using Groups is easier to manage and more secure. It also improves system performance. The more Role assignments and complex Policies you add for a given User, the more complex the search/load queries will be, because they always take permissions into account.

Available Policies

Module Function Effect
all modules all functions grant all available permissions
content read view the content both in front and back end
  diff unused
  view_embed view content embedded in another Content item (even when the User is not allowed to view it as an individual Content item)
  create create new content. Note: even without this Policy the User is able to enter edit mode, but cannot finalize work with the Content item.
  edit edit existing content
  publish publish content. Without this Policy, the User can only save drafts or send them for review (in Ibexa Experience)
  manage_locations remove Locations and send content to Trash
  hide hide and reveal content Locations
  reverserelatedlist see all content that a Content item relates to (even when the User is not allowed to view it as an individual Content items)
  translate unused
  remove remove Locations and send content to Trash
  versionread view content after publishing, and to preview any content in the Site mode
  versionremove remove archived content versions
  translations manage the language list in Admin
  urltranslator manage URL aliases of a Content item
  pendinglist unused
  restore restore content from Trash
  cleantrash empty the Trash (even when the User does not have access to individual Content items)
  unlock unlock drafts locked to a user for performing actions
Content Type update modify existing Content Types. Also required to create new Content Types
  create create new Content Types. Also required to edit exiting Content Types
  delete delete Content Types
state assign assign Object states to Content items
  administrate view, add and edit Object states
role assign assign Roles to Users and User Groups
  update modify existing Roles
  create create new Roles
  delete delete Roles
  read view the Roles list in Admin. Required for all other role-related Policies
section assign assign Sections to content
  edit edit existing Sections and create new ones
  view view the Sections list in Admin. Required for all other section-related Policies
setup administrate access Admin
  install unused
  setup unused
  system_info view the System Information tab in Admin
site
view view the "Sites" in the top navigation
  create create sites in the Site Factory
  edit edit sites in the Site Factory
  delete delete sites from the Site Factory
  change_status change status of the public accesses of sites to Live or Offline in the Site Factory
user login log in to the application
  password unused
  preferences access and set user preferences
  register register using the /register route
  selfedit unused
  activation unused
workflow change_stage change stage in the specified workflow
comparison view view version comparison
segment
read load Segment information
create create Segments
update update Segments
remove remove Segments
assign_to_user assign Segments to Users
segment_group
read load Segment Group information
create create Segment Groups
update update Segment Groups
remove remove Segment Groups
siso_policy
checkout access the checkout process
edit_invoice edit invoice address
edit_delivery edit delivery address
delegate access delegate screen
dashboard_view access the Back Office cockpit
forms_profile_edit access the user profile
manage_orders access Order Management screen
manage_prices work in Price management tab
manage_stock work in Stock management tab
manage_shipping_costs work in Shipping costs management tab
manage_config access eCommerce configuration settings
lostorder_list access the lost orders in the Back Office
lostorder_manage manage lost orders
lostorder_process process lost orders
orderhistory_view view Order history
quickorder access the quick order
read_basket see the basket
write_basket modify the basket (add, update, delete)
see_product_price see product prices in the catalog
siso_customercenter
approve approve baskets in the customer center
buy buy as the customer center user
view access the customer center user management
siso_control_center
manage_erp_log access to ERP logs
manage_emails access Control center email archive
manage_jobs: access Control center e-commerce jobs

Permissions for routes

You can limit access to specific routes per Policy:

1
2
3
4
5
siso_quick_order:
    path: /quickorder
    defaults:
        _controller: siso_quick_order.quick_order_controller:quickOrderAction
        policy: siso_policy/quickorder

This configuration can be used to check whether a user has a single Policy. If you need more complex rules, e.g. to check the Section or check multiple Policies at once, implement a permission check in the controller.

Permissions for custom controllers

You can control access to a custom controller by implementing the performAccessCheck() method.

In the following example the user does not have access to the controller unless they have the section/view Policy:

1
2
3
4
5
6
7
use eZ\Publish\Core\MVC\Symfony\Security\Authorization\Attribute;

public function performAccessCheck(): void
{
    parent:performAccessCheck();
    $this->denyAccessUnlessGranted(new Attribute('section', 'view'));
}

Attribute accepts three arguments:

  • module is the Policy module (e.g. content)
  • function is the function inside the module (e.g. read)
  • limitations are optional Limitations to check against. Here you can provide two keys:
    • valueObject is the object you want to check for, for example ContentInfo.
    • targets are a table of value objects that are the target of the operation. For example, to check if content can be assigned to a Section, provide the Section as targets. targets accept Location, Object state and Section objects.

Checking user access

To check if a user has access to an operation, use the isGranted() method. For example, to check if content can be assigned to a Section:

1
2
3
$hasAccess = $this->isGranted(
    new Attribute( 'section', 'assign', [ 'valueObject' => $contentInfo, 'targets' => [$section] ] )
);

You can also use the permission resolver (eZ\Publish\API\Repository\PermissionResolver). The canUser() method checks if the user can perform a given action with the selected object.

For example: canUser('content', 'edit', $content, [$location] ); checks the content/edit permission for the provided Content item at the provided Location.

Blocking access to controller action

To block access to a specific action of the controller, add the following to the action's definition:

1
$this->denyAccessUnlessGranted(new Attribute('state', 'administrate'));