[symfony-users] Analyse Programmeur / Développeur PH P

2007-12-04 Thread HBS Research
Sous la responsabilité du Directeur technique, vous intégrerez une équipe travaillant sur des projets de sites WEB dynamiques complexes, à base de cartographie. Vous assurerez le développement, la maintenance, et l'évolution d'applications complètes ou de modules en respectant les cahiers des cha

[symfony-users] Re: many-to-many Relationships

2007-12-04 Thread Mat
I'd love to know as well, I assumed that Symfony didn't have anything to cope with this at the moment and just created the table/code myself, but if it does I'd love to hear about it. Mat -Original Message- From: Martin H [mailto:[EMAIL PROTECTED] Sent: 04 December 2007 16:16 To: symfon

[symfony-users] many-to-many Relationships

2007-12-04 Thread Martin H
Hi there, I'm new to Symfony. Before I start my real-live application I want to try how N-M- Relations, or Many-to-Many Relations are defined in Symfony. The article http://www.symfony-project.org/book/1_0/14-Generators#Many-to-Many%20Relationships describes it a little bit to short. I still hav

[symfony-users] Re: Create a common action in several modules

2007-12-04 Thread eax
I've just replaced public function executeCommon() by public function preExecute() and it works Thank you for your help :) Sylvain --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "symfony users" group. To post t

[symfony-users] Re: Create a common action in several modules

2007-12-04 Thread Cece
> And when I call my page, I've only the 'ok1' or 'ok2' output on my > screen... Oh, so we misunderstood you. If you have to execute something shared before all actions you can put it in a magic method called preExecute(). Everything in it will be executed before an action called. And if you want

[symfony-users] Re: Create a common action in several modules

2007-12-04 Thread eax
Ok, I've done that : lib/myCommonActions.class.php: -- http://groups.google.com/group/symfony-users?hl=en -~--~~~~--~~--~--~---

[symfony-users] Re: Create a common action in several modules

2007-12-04 Thread Cece
put a whateverActions.php in the projects lib dir, and create a class in it: wrote: > > I think it's the good way to do what I want, but I didn't have really > understood how to do exactly. Can you give me an example ? > > Thanks > > Sylvain > > On 4 déc, 15:12, Cece <[EMAIL PROTECTED]> wrote: >

[symfony-users] Re: Create a common action in several modules

2007-12-04 Thread Michael Nolan
Create project/lib/myCommonActions.class.php: wrote: > I think it's the good way to do what I want, but I didn't have really > understood how to do exactly. Can you give me an example ? > > Thanks > > Sylvain > > On 4 déc, 15:12, Cece <[EMAIL PROTECTED]> wrote: > > > Hello, > > > All your action

[symfony-users] Re: Create a common action in several modules

2007-12-04 Thread eax
I think it's the good way to do what I want, but I didn't have really understood how to do exactly. Can you give me an example ? Thanks Sylvain On 4 déc, 15:12, Cece <[EMAIL PROTECTED]> wrote: > Hello, > > All your action classes are inherited from sfAction. Create a custom class > in your lib

[symfony-users] Re: Create a common action in several modules

2007-12-04 Thread Cece
Hello, All your action classes are inherited from sfAction. Create a custom class in your lib directory inherited from sfActions and add the shared common action (executeCommon?) to them. Add it a good name, and inherit your actions from that. Hope it helps, Szabolcs Heilig On Dec 4, 2007 3:02

[symfony-users] Create a common action in several modules

2007-12-04 Thread eax
Hi, I would like an common action to be called from some modules. It's a sort of common action, but I don't know how to do. Thanks Sylvain --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "symfony users" group. To p

[symfony-users] Re: Sharing a variable between components

2007-12-04 Thread eax
Thank you for yours answers Sylvain On 3 déc, 17:27, "Nicolas Perriault" <[EMAIL PROTECTED]> wrote: > On 12/3/07, eax <[EMAIL PROTECTED]> wrote: > > > I would like to initialize a variable in my controller, and use it in > > components (I don't speak of sessions variables). > > You can pass it t

[symfony-users] Re: unable to checkout sfDoctrinePlugin / SVN error

2007-12-04 Thread Matthias N.
On 4 Dez., 11:40, "Ian P. Christian" <[EMAIL PROTECTED]> wrote: > Matthias N. wrote: > > Hi, > > > trying to checkout sfDoctrinePlugin I get the following lines: > > Doctrine SVN has moved, tohttp://svn.phpdoctrine.orgnow, and is no > longer accessible on doctrine.pengus.net. > > I was under the i

[symfony-users] Re: Admin Generator View action

2007-12-04 Thread Michael Nolan
The default admin generator theme doesn't provide view or separate create and edit actions but there's a plugin which claims to: http://trac.symfony-project.com/wiki/sfAdvancedAdminGeneratorPlugin Mike On Dec 4, 10:15 am, Greg Freeman <[EMAIL PROTECTED]> wrote: > Does the admin generator have a

[symfony-users] Re: unable to checkout sfDoctrinePlugin / SVN error

2007-12-04 Thread Ian P. Christian
Matthias N. wrote: > Hi, > > trying to checkout sfDoctrinePlugin I get the following lines: > > Doctrine SVN has moved, to http://svn.phpdoctrine.org now, and is no longer accessible on doctrine.pengus.net. I was under the impression externals had been updated, but apparently not. --~--~

[symfony-users] Admin Generator View action

2007-12-04 Thread Greg Freeman
Does the admin generator have a view action or do I need to make it myself? I want to be able to display non-editable transaction history. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "symfony users" group. To post

[symfony-users] Re: unable to checkout sfDoctrinePlugin / SVN error

2007-12-04 Thread Zsolt Takács
oh, sorry, its not that :) On Dec 4, 2007 11:07 AM, Zsolt Takács <[EMAIL PROTECTED]> wrote: > tell your SA to enable webdav on your proxy > > > On Dec 4, 2007 11:05 AM, Matthias N. <[EMAIL PROTECTED]> wrote: > > > > Hi, > > > > trying to checkout sfDoctrinePlugin I get the following lines: > > >

[symfony-users] Re: unable to checkout sfDoctrinePlugin / SVN error

2007-12-04 Thread Zsolt Takács
tell your SA to enable webdav on your proxy On Dec 4, 2007 11:05 AM, Matthias N. <[EMAIL PROTECTED]> wrote: > > Hi, > > trying to checkout sfDoctrinePlugin I get the following lines: > > > svn co http://svn.symfony-project.com/plugins/sfDoctrinePlugin > sfDoctrinePlugin > U sfDoctrinePlugin/br

[symfony-users] unable to checkout sfDoctrinePlugin / SVN error

2007-12-04 Thread Matthias N.
Hi, trying to checkout sfDoctrinePlugin I get the following lines: svn co http://svn.symfony-project.com/plugins/sfDoctrinePlugin sfDoctrinePlugin U sfDoctrinePlugin/branches/1.0/lib Hole externen Verweis nach >>sfDoctrinePlugin/trunk/lib/doctrine<< svn: PROPFIND Anfrage fehlgeschlagen auf