Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

This might be an obvious thing to you but - even after reading through a lot of manuals and blogs - I'm still not sure what exactly should a bundle in Symfony2 represent in a webpage. And it's hard to guess it from the simple demo applications.

For example: I have a site which is divided into two parts (one is just a 2nd level domain like site.com and another is dom2.site.com). Each of these two parts has some sections of it's own - sometimes the same (like news) sometimes different.

What would the correct representation of this in symfony2? Should I have

  • a MySite\site1 and MySite\site2 bundle and do the different sections via different controllers, or
  • bundles Site1\News and Site2\News, or
  • bundles MySite\Site1News and MySite\Site2News etc.

...or am I getting all wrong at this?

share|improve this question

3 Answers

up vote 6 down vote accepted

I am also new to Symfony and will follow the results of this question with interest, but for what it's worth, my take on it is:

A bundle is just that: a group of files, assets, PHP classes and methods, tests, etc. The logic of the grouping can be anything you like. In some cases, it's really obvious what the grouping is and why it's been done -- for instance, if I wrote a blog system for Symfony2 and wanted to release it, I'd make it into a bundle. That's the sort of example used most in the documentation.

But you'd also use bundles for anything you wanted to release as one little feature. Say for instance, this bundle which creates default routes for all your controllers. It's not a fully developed plugin/feature like a blog or forum, but it's a bit of code that I can easily import into my project, it stays totally separate from everything else, it's a bundle.

Finally, you'd also use bundles internally to your project, in absolutely any way which makes sense to you.


My take on your specific situation:

Quick and easy:

  • MySite\MyCode -- gets the job done, and maybe you don't have any logical way to break up the code you're going to write.

If there's some more unique features between the two sites and you want to separate them out for clarity:

  • MySite\SharedFeatures
  • MySite\Site1Features
  • MySite\Site2Features

If you really like everything in its place, or if you have a complex project, maybe:

  • MySite\MySiteMain (shared features and catch-all miscellany that doesn't deserve its own bundle)
  • MySite\News
  • MySite\Site1FeatureSomethingOrOther
  • MySite\Site2FeatureSomethingOrOther

I definitely think you want to stick to logical groups of code -- so I think your example "bundles Site1\News and Site2\News" and "MySite\Site1News and MySite\Site2News" wouldn't be the best way to go. Site1 and Site2 are implementations, so making a separate bundle for each site's news page would seem to be counterproductive to me; you'd want to make one news component and build it to be used in two different ways.

As for your two-domains question, you can either point both domains at the same code, and test within your code for what domain is being requested, or you can check out two copies of the same code and change the configuration files slightly (this doesn't necessarily violate the idea of DRY because you'd still edit the code in one place, then update both copies.)

share|improve this answer
Thanks for your input to this interesting (for me at least) topic! – Czechnology May 22 '11 at 20:59

The way I understand a bundle is that it is similar to what CMS like e.g. Typo3 or Drupal call a "plugin". So it should be ideally self-contained and written in a way that it can be used on other projects too.

E.g. in your case I'd create a "staticHtmlBundle" that contains all the static pages of your website, divided within by site.com and dom2.site.com.

Then I would create a "newsBundle" that contains all the news-articles, maybe even database-driven with a little admin-section where you can edit them and assign them to different channels (in your case that is site.com, dom2.site.com). A static page from within staticHtmlBundle would call newsBundle and display its data (like e.g. a listView of the news or a detailView and so on).

If you keep everything as abstract and reusable as possible then you could even publish the newsBunde in the Symfony 2 Bundle repository and share it with the community!

share|improve this answer
This seems to me somehow hard to grasp... Anyway, even with multiple domains I should keep just one folder with bundles (that is the one in /src)? – Czechnology Apr 24 '11 at 15:26
1  
Hmmm....I think of bundles like Lego bricks. When I create a website I split it up in Lego bricks or "bundles". So when I e.g. build another site I can re-use some of those lego bricks. Afaik the /src folder is intended for your own bundles and the vendor/bundles folder is for 3rd party bundles. – nerdess Apr 24 '11 at 22:39

I am also new to Symfony, and at the risk of repeating the question, I would like to know the best practise for implimeting a stock control system including the following items:

Customers, Suppliers, Products, Orders, Payments, etc.

Should I create a bundle for each, or maybe a stock bundle, a financial bundle and a utilities bundle?

share|improve this answer
you should ask your own question and not highjack somebody elses ... A bundle is any piece of functionality you want to share between applications , it doesnt have to be something you display or a web page. If you want to share a piece of code between different symfony projects , create a bundle. – mpm Apr 29 at 20:09
It is my own question! As I tried to add a question I was guided to this thread, and it seemed to almost fit. Thanks for your answer. – gcman105 Apr 30 at 6:22

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.