{# @var $element \Pimcore\Model\Element\AbstractElement #} {% set language = element.getProperty('language') %}
{% if element is instanceof ('\\Pimcore\\Model\\DataObject\\Concrete') %} {% endif %} {% if element is instanceof ('\\Pimcore\\Model\\Asset') %} {% endif %} {% if language is not empty %} {% endif %} {% if element is instanceof('\\Pimcore\\Model\\Document\\Page') %} {% if element.title is not empty %} {% endif %} {% if element.description is not empty %} {% endif %} {% if element.getProperty('navigation_name') is not empty %} {% endif %} {% endif %} {% set userOwnerId = element.getUserOwner() %} {% set owner = userOwnerId is not null ? pimcore_user(userOwnerId) : null %} {% if owner is instanceof('\\Pimcore\\Model\\User') %} {% endif %} {% set userModificationId = element.getUserModification() %} {% set editor = userModificationId is not null ? pimcore_user(userModificationId) : null %} {% if editor is instanceof('\\Pimcore\\Model\\User') %} {% endif %}
{{ 'class'|trans([],'admin') }} {{ element.getClassName() }} [{{ element.getClassId() }}]
{{ 'mimetype'|trans([],'admin') }} {{ element.getMimeType() }}
{{ 'language'|trans([],'admin') }} {% set locales = pimcore_supported_locales() %} {{ locales[language] }}
{{ 'title'|trans([],'admin') }} {{ element.title }}
{{ 'description'|trans([],'admin') }} {{ element.description }}
{{ 'name'|trans([],'admin') }} {{ element.getProperty('navigation_name') }}
{{ 'owner'|trans([],'admin') }} {{ owner.name }}
{{ 'usermodification'|trans([],'admin') }} {{ editor.name }}
{{ 'creationdate'|trans([],'admin') }} {{ element.getCreationDate()|date('Y-m-d H:i') }}
{{ 'modificationdate'|trans([],'admin') }} {{ element.getModificationDate()|date('Y-m-d H:i') }}