kicken Posted January 27, 2014 Share Posted January 27, 2014 So I started using Symfony a few weeks back, figured I should probably learn one of these frameworks rather than always do things custom. So far I like it, but it's been a bit of a learning curve from how I've typically done things. One thing I'd like to do with my project is setup a system for using themes on the site, but I've not yet figured out how to do so in a manner that I like. I'm hoping maybe someone with more Symfony experience can shed some light on how best to approach this. I'll give a quick rundown of how I think I'd like for things to work. Any suggestions are welcome. What I'd like to be able to do is set a path to a directory which contains all the themes. Installing a new theme should be as simple as just extracting a zip file into this directory. The active theme would be controlled through a configuration parameter. So essentially when someone sets up the software, they would just add a couple lines to their parameters.yml file, for example: parameters: themes_root: %kernel.root_dir%/../web/themes active_theme: default A theme would consist of a few twig templates for various types of pages (or snippets). The controller views would extend these templates as necessary. The theme's templates should be able to extend other templates within that theme as well. For example a theme may have a base template and various pages would extend that. My initial thought for how to do all of this was to create a twig extension to add a function which would resolve the path to a theme template. For example my view would do: {% extends ThemePath("simplepage.html.twig") %} {% block Content %} blah {% endblock %} The ThemePath would use the parameters to construct the full path to the twig template, for example D:\site\web\themes\default\simplepage.html.twig. I completed this part but ran into my a snag with Symfony complaining that the template name passed to extends was not in bundle:section:template.format.engine format. I managed to work around this by replacing the default name parser to allow absolute file paths or the Symfony format. This is working all well and fine but there are a few things I don't like about this setup: It feels ugly to me. Seems like there should be a better way than this. The theme files need to use the ThemePath function as well if they use extends or similar. Ideally this would be unnecessary. Any comments/thoughts/suggestions/questions are welcome. Quote Link to comment https://forums.phpfreaks.com/topic/285702-theme-system-for-symfony/ Share on other sites More sharing options...
ignace Posted January 27, 2014 Share Posted January 27, 2014 (edited) In Symfony it is possible for one bundle to override another bundle. This allows another bundle to override any page as necessary and thus theme it however you like. The only problem is you can only override one bundle not multiple. Using this setup you can create a bundle for every theme and simply: php composer.phar require me/bundle/grey-theme-bundleThe advantage here is that your bundle with it's controllers and views is usable without any dependency on another bundle which it would have if your views extended some other bundles base views. It's even possible to install multiple theme bundles and then afterwards select which theme bundle to activate. The added benefit is that it will also be under it's own web bundle directory when executing assets:install: web/bundles/mybundle/.. web/bundles/mybluethemebundle/.. web/bundles/mygreenthemebundle/.. web/bundles/mypurplethemebundle/.. http://symfony.com/doc/current/cookbook/bundles/override.html Edited January 27, 2014 by ignace Quote Link to comment https://forums.phpfreaks.com/topic/285702-theme-system-for-symfony/#findComment-1466788 Share on other sites More sharing options...
kicken Posted January 28, 2014 Author Share Posted January 28, 2014 Thanks, I had seen some of the override ability previously, though not that particular page. It seemed like a bit much to have to create and register a bundle just to change themes though, and didn't seem to fit well with what I had thought. I may re-visit the idea however. I'll keep plugging away at a few ideas and post back with whatever I decide to go with later. Quote Link to comment https://forums.phpfreaks.com/topic/285702-theme-system-for-symfony/#findComment-1466866 Share on other sites More sharing options...
aosmialowski Posted February 13, 2014 Share Posted February 13, 2014 Why not using LiipThemeBundle? We've been using it quite intensively and it works as expected. Of course, it's not perfect, but it's a great base for you to start. Quote Link to comment https://forums.phpfreaks.com/topic/285702-theme-system-for-symfony/#findComment-1468774 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.