I am working with symfony cmf on a cms page. Currently i am trying to edit the label property from a Symfony\Cmf\Bundle\SimpleCmsBundle\Doctrine\Phpcr\Page object.
In my twig template i have the following:
{% createphp page as="rdf" %}
<h1 {{ createphp_attributes(rdf) }}>{{ createphp_content(rdf) }}</h1>
{% endcreatephp %}
I dont really know how i can get this to work so that only the label changes. When i dump the rdf object it will just show me two properties underneath the _children property "title" and "body". When i try to enter rdf.label, it gives me the error that label is not an existing property. Maybe somebody has managed to solve this before and can help me out with it. I would be really thankful.