Skip to main content
Version: 2026.1

Documents

Documents are Pimcore's web content management component. Each document is a node in a hierarchical tree, identified by a unique ID and a path that doubles as its public URL. A page at /en/about/team in the document tree is reachable at exactly that address in the browser.

Documents combine structured content editing in Pimcore Studio with Symfony-based rendering on the frontend. Editors work with visual Editables (input fields, WYSIWYG editors, image pickers) directly inside the page, while developers control layout and logic through controllers and Twig templates.

Document Types

Pimcore provides several document types, each designed for a specific use case:

TypePurpose
PageA web page. Its path in the tree equals its URL in the browser.
SnippetA reusable content fragment, embeddable in pages or other snippets.
LinkA web link for use in navigation structures.
HardlinkA reference to another document subtree, reusing its content in a different context.
FolderOrganizes documents, just like folders on a filesystem.
EmailA document with special functionality for transactional emails.

How Documents Work

Documents follow a document-controller-template pattern built on Symfony MVC. A request is routed to a document, which determines the controller and template for rendering. See MVC in Pimcore for the rendering flow and configuration types.

Properties

Properties add key-value metadata to documents. Combined with tree inheritance, they become a powerful tool for managing cross-cutting concerns without touching every page individually:

  • Navigation - control separators, highlighting, or custom CSS classes for navigation rendering.
  • Header images - set a default header image at the root and override it deeper in the tree.
  • Sidebars - toggle sidebar visibility per section.
  • SEO - define fallback meta titles and descriptions that inherit down the tree, overridden only where needed.
  • Protected areas - mark subtrees for closed user groups.
  • Appearance - switch themes or layouts for micro-sites or nested sites.

Next Steps