Warning: You are browsing the documentation from version 4 to 10 of Pimcore. Please visit https://pimcore.com/docs/platform/ for the latest versions of Pimcore.
Version:

Scheduling

General

Every element type in Pimcore (documents, objects, assets) has implemented a scheduler which provides the ability to create tasks like:

Note: To use scheduler you have to configure "cronjobs". You can find more in the System setup section.

Usage

Let's get objects as an example. In the Pimcore backend UI find the icon:

Scheduling - the icon in editmode

You can add the task by clicking on the Add button, then an empty row shows. There is few configurable options: date, time and action which should run with that task. The "active" checkbox is unchecked after the task finished. The Version option would be used only if you chosen the "Publish version"* action.

To make the task which automatically publish an unpublished object just fill values like in the picture, below.

Scheduling - the new task

And the effect in the database:

`schedule_tasks`
# id, cid, ctype, date, action, version, active
'7', '76', 'object', '1474034700', 'publish', NULL, '1'

When the pimcore/cli/maintenance.php script will finish processing jobs you could see the changes.

In the edit object view:

Scheduling - the processed task

In the database:

`schedule_tasks`
# id, cid, ctype, date, action, version, active
'8', '76', 'object', '1474034700', 'publish', NULL, '0'