[symfony-users] Re: Propel vs. Doctrine - Pros and Cons

2009-03-24 Thread Michal G
Hello, Couple of reasons why i've chosen Doctrine instead of Propel: - far, far, far, far better documentation - IMHO more readable queries with DQL than with criterions - code is maintained and actively developed - this means that bug will be fixed and support for new version of dbm's will be

[symfony-users] Help Netbeans developers write symfony support !

2008-11-26 Thread Michal G
Hello, There's gonna be symfony support in Netbeans 7.0. Now netbeans developers are gathering requirements and usecases from symfony developers. More details here: http://blogs.sun.com/netbeansphp/entry/evaluating_of_symfony _support --~--~-~--~~~---~--~~ You

[symfony-users] Re: Help Netbeans developers write symfony support !

2008-11-26 Thread Michal G
Sorry, link is broken, here's a proper one: http://blogs.sun.com/netbeansphp/entry/evaluating_of_symfony_support --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups symfony users group. To post to this group, send email

[symfony-users] Re: Symfony patterns?

2008-11-25 Thread Michal G
Hello and thanks for all responses On Nov 24, 9:37 pm, Lee Bolding [EMAIL PROTECTED] wrote: $pos = new CartPosition(); $pos-product = some product; $pos-cart = CartTable::findByPk($someWrongId); $pos-save(); That looks... wrong. In several different ways. 1) cart ID should

[symfony-users] Re: Symfony patterns?

2008-11-24 Thread Michal G
Hello and thanks for all your answers On Nov 23, 12:34 pm, small [EMAIL PROTECTED] wrote: Miachel, Good question - you will actually find the first few chapters of the book explain each part of the MVC model - and what part of your code should go where. I strongly recommend you have a read

[symfony-users] getAttribute safety

2008-11-20 Thread Michal G
Hello, I'm little concerned with getAttribute usage - because it returns default null value when attribute name is wrong. For example, using in template: echo $sf_user-getAttribute(last_login); instead of echo $sf_user-getAttribute(lastlogin); can lead to error which isn't noticed by php. My

[symfony-users] Symfony patterns?

2008-11-20 Thread Michal G
Hello, Are there somewhere some good designs patterns how to write in symfony? I mean something like - what should be done in controller(action), form, in model. Something like Call the expert: refactoring story on symfony blog page. For example i have a such problem - there's a shopping cart