Skip to main content
Version: 2023.3

Notes & Events

General

Notes & Events are primarily used to log changes or events on elements independently from the versioning. This includes changes made by marketers, editors, automated importers / synchronisations, .... Simply everything that has nothing to do with the data itself but is important to know.

Use cases

  • An importer (CLI-script) that adds information to objects which changes were made
  • Marketers / SEOs adding information which changes were made on documents like "optimized for keyword xyz ..."

There are really nearly endless possibilities what to do with Notes & Events.

Create Notes & Events

Using API

use Pimcore\Model;

$object = Model\DataObject::getById(4);

$note = new Model\Element\Note();
$note->setElement($object);
$note->setDate(time());
$note->setType("erp_import");
$note->setTitle("changed availabilities to xyz");
$note->setUser(0);

// you can add as much additional data to notes & events as you want
$note->addData("myText", "text", "Some Text");
$note->addData("myObject", "object", Model\DataObject::getById(7));
$note->addData("myDocument", "document", Model\Document::getById(18));
$note->addData("myAsset", "asset", Model\Asset::getById(20));

$note->save();

And this is how the entry looks like:

Notes & events - the grid previewNotes & events - the grid previewNotes & events - the grid preview

Note: As the title of a note is translatable (admin domain) make sure you don't add variable text that would lead to unintended translation entries. Use the description or data for details instead.

Add Events in Pimcore backend UI

You could also add the note directly in the edit view of objects, documents and assets.

Notes & events - add a note manuallyNotes & events - add a note manuallyNotes & events - add a note manually

Specify Custom Types for Notes and Events

Via Pimcore configuration, the selectable types for notes and events can be specified per content type (asset, document, data object), see sample config below:

# config/config.yaml or any other Symfony config file

pimcore_admin:
documents:
notes_events:
types:
- ""
- "content"
- "seo"
- "some other type"
assets:
notes_events:
types:
- ""
- "content"
- "licese renewal"
- "some other type"
objects:
notes_events:
types:
- ""
- "manual data change"
- "some other type"