core-bundle
core-bundle copied to clipboard
Provides some basic helpers for rendering content documents
fix #126 you have to call the filter manually as there is no event or filter system like with the ORM. for now it only works with the ODM query...
Symfony 3.2 will introduce a [Workflow component](https://github.com/symfony/workflow). I think it would be great if we can integrate this into the publish workflow (e.g. publishing only in specific states). To keep...
this looks pretty bad (the current sandbox is still the same): http://cmf.liip.ch/de/admin/bundle/content/multilangstaticcontent/cms/content/demo/edit is there a way we can not have the admin extension trigger when embedding? i guess that is...
we could make the PublishWorkflowExtension have a constructor argument for who may publish and inject the security context. it should be quite simple. we can default to `ROLE_CAN_PUBLISH` or some...
this is somewhat similar to the state voter, but would be more explicit and straightforward to configure (or maybe its just some syntactic sugar around the state voter). ``` php...
we could have a state based publish workflow. for the access check, it would look like the following. additionally we need to set the available states on the admin (another...
look at TYPO3's EEL/FlowQuery
the idea is that this function would look at the configuration of the route to determine the controller/template etc
Is it possible filter static content by locales? `TranslatableExtension.php` doesn't have method `configureDatagridFilters`. If i wish filter content by language, what i must do? I tried with add method `configureDatagridFilters`...
As for now the publish workflow allows to check if a content is "published" or not. It would be nice to have something that allows to query the database, filtering...