conference-tutorial-1.0 icon indicating copy to clipboard operation
conference-tutorial-1.0 copied to clipboard

CMF 1.0 version of the step by step tutorial how to build a real application with the Symfony2 CMF

Results 20 conference-tutorial-1.0 issues
Sort by recently updated
recently updated
newest added

This enables multilanguage content and some translations. - Add the _locale in the routing definition for static routes - Have the SimpleCms page documents add the locale pattern - Add...

In this branch, we start using Doctrine PHPCR-ODM and the CMF bundles. After switching to this branch, you need to tell composer to install the new dependencies: ``` composer install...

Adding a block that can store some configuration options and using that in the block service. Note that we add publishStartDate values to the fixtures in order to get more...

Use blocks to show additional information. Use default block if the current content does not have the field or the field is empty. Adds blocks to the fixtures.

- Have your content implement PublishableInterface and/or PublishTimePeriodInterface (already the case for the base Page document) - Check `cmf_is_published()` before displaying content - Direct URLs are checked automatically (open a...

This is configuring a specific template for the homepage and having a slideshow there.

- Configure CmfMediaBundle and LiipImagineBundle - Add portrait field to `Speaker` document - Output portrait with different imagine filters on schedule and speakers page - Allow editing speaker image

This menu voter highlights the "Schedule" menu item if the content is of class Presentation. This voter is not very robust, it relies on the URL which can be edited...

When we have an application, do not even try to store more than necessary in the database. Here we define a route and a controller with a form. We link...

This creates a basic bundle as produced by `app/console generate:bundle`. We load that bundle and configure the default template for SimpleCms Pages. Additionally, we add a Doctrine fixtures file to...