[symfony-users] Re: Propel choice : generated html not seem to be correct

2009-04-14 Thread naholyr
I think your method getVisibleCvByUser returns incorrect data. Paste it here please ;) --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups symfony users group. To post to this group, send email to

[symfony-users] Re: plugin development idea

2009-04-14 Thread maxim.oleinik
I wrote my simple Route which throws 404 if owner is not current user. # rule event_delete: url: /event/:id class:myObjectOwnerRoute options: { model: Event, type: object, owner_column: user_id } param:{ module: event, action: delete } requirements: id: \d+

[symfony-users] composite unique indices

2009-04-14 Thread Phil Moorhouse
Hi, I have a table with the fields username and affiliate_id I need to specify the pairing as unique, i.e. username | affiliate_id bob_smith, 1 bob_smith, 2 frank_thomas, 3 jessica_murphy, 2 are allowed, but a second bob_smith, 2 would not be. How do I format this in schema.yml? (for

[symfony-users] Re: Extending sfController

2009-04-14 Thread Johannes Heinen
I see... unfortunately it seems to be hard to decouple the mvc-classes from these convention over configuration principles, though the code itself is fairly simple and small (but contains many hard coded pathnames to e.g. to views etc... perhaps i have to follow your advice. To be more specific

[symfony-users] Re: Extending sfController

2009-04-14 Thread Lee Bolding
I think I get what you want to do - create a sandbox for 3rd party modules, where they can't interfere with the 1st party application. Does that sound about right? I've got several projects in various states, that at some point are going to need that functionality - I just haven't reached