Skip to content

Public PHP API

The Public PHP API enables you to interact with eZ Platform's Repository and content model from your PHP code.

You can use it to create, read, update, manage, and delete all objects available in eZ Platform, namely content and related objects such as Sections, Locations, Content Types, languages, etc.

The PHP API is built on top of a layered architecture, including a persistence SPI that abstracts storage. Using the API ensures that your code will be forward compatible with future releases based on other storage engines.

Tip

For more information see a presentation about eZ Platform API.

Using API services

You can access the PHP API by injecting relevant services into your code.

The API provides access to Content, User, Content Types and other features through various services. Those services are obtained using get[ServiceName]() methods: getContentService(), getUserService(), etc.

The full list of available services covers:

Value objects

The services provide interaction with read-only value objects from the eZ\Publish\API\Repository\Values namespace. Those objects are divided into sub-namespaces, such as Content, User or ObjectState. Each sub-namespace contains a set of value objects, such as Content\Content or User\Role.

Value objects come with their own properties, such as $content->id or $location->hidden, as well as with methods that provide access to more related information, such as Relation::getSourceContentInfo() or Role::getPolicies().

Creating and updating objects

Value objects fetch data from the Repository and are read-only. To create and modify Repository values you need to use structs, such as getContentCreateStruct() or getContentUpdateStruct().

Value info objects

Some complex value objects have an Info counterpart, for example ContentInfo for Content. These objects provide you with lower-level information. For instance, ContentInfo contains currentVersionNo or remoteId, while Content enables you to retrieve Fields, Content Type, or previous versions.

Authentication

One of the responsibilities of the Repository is user authentication. Every action is executed as a user.

When using the PHP API, authentication is performed in three ways:

Back Office authentication

When actions are performed through the Back Office, they are executed as the logged-in User. This User's permissions will affect the behavior of the Repository. The User may, for example, not be allowed to create Content, or view a particular Section.

Using sudo()

To skip permission checks, you can use the sudo() method. It allows API execution to be performed with full access, sand-boxed.

You can use this method to perform an action that the current User does not have permissions for.

For example, to hide a Location, use:

1
2
3
4
5
6
7
use eZ\Publish\API\Repository\Repository;

//...

$hiddenLocation = $repository->sudo(function (Repository $repository) use ($location) {
    return $repository->getLocationService()->hideLocation($location);
});

Setting the Repository user

In a command line script, the Repository runs as if executed by the anonymous user. While using sudo() is the recommended option, you can also set the current user to a user with necessary permissions to achieve the same effect.

In order to identify as a different user, you need to use the UserService together with PermissionResolver (in the example admin is the login of the administrator user):

1
2
$user = $userService->loadUserByLogin('admin');
$permissionResolver->setCurrentUserReference($user);

This is not required in template functions or controller code, as the HTTP layer takes care of identifying the user, and automatically sets it in the repository.

If you want to identify a user with their credentials instead, provide them in the following way:

1
2
$user = $userService->loadUserByCredentials($username, $password);
$permissionResolver->setCurrentUserReference($user);

Exception handling

PHP API uses Exceptions to handle errors. Each API method may throw different exceptions, depending on what it does.

It is good practice to cover every exception you expect to happen.

For example if you are using a command which takes the Content ID as a parameter, the ID may either not exist, or the referenced Content item may not be visible to the user.

Both cases should be covered with error messages:

1
2
3
4
5
6
7
try {
    // ...
    } catch (\eZ\Publish\API\Repository\Exceptions\NotFoundException $e) {
        $output->writeln("<error>No content with id $contentId found</error>");
    } catch (\eZ\Publish\API\Repository\Exceptions\UnauthorizedException $e) {
        $output->writeln("<error>Permission denied on content with id $contentId</error>");
    }

Service container

Ibexa DXP uses the Symfony service container for dependency resolution.

Symfony dependency injection ensures that any required services are available in your custom code (for example, controllers) when you inject them into the constructor.

Symfony service container uses service tags to dedicate services to a specific purpose. They are usually used for extension points.

Ibexa DXP exposes multiple features using service tags, for example, Field Types.

Tip

For a list of all service tags exposed by Symfony, see its reference documentation.