[symfony-users] Re: Accessing user session from a custom routing class

2010-03-24 Thread HiDDeN
I have tried sfRoute::$context

>From an action it returns "Fatal error: Cannot access protected
property sfRoute::$context"

And from a custom routing class it returns "Fatal error: Access to
undeclared static property: sfRoute::$context"

On Mar 24, 4:00 pm, Alan Bem  wrote:
> Context is available as an attribute in sfRoute::$context.
>
> On Wed, Mar 24, 2010 at 2:59 AM, Tom Haskins-Vaughan <
>
>
>
> t...@templestreetmedia.com> wrote:
> > +1
>
> > On Tue, Mar 16, 2010 at 1:17 PM, Jose Antonio Pio Gil
> >  wrote:
> > > I have the same question about it!
>
> > > 2010/3/16 HiDDeN 
>
> > >> Is there some way to acces the user object from a custom routing
> > >> class?
>
> > >> I'd like to add a parameter when generating a url, and that parameter
> > >> is inside the user session, so I need to access it.
>
> > >> The only way I found to access is using the sfContext::getInstance()-
> > >> >getUser(), but it's known to be inefficient.
>
> > >> Thanks!
>
> > >> --
> > >> If you want to report a vulnerability issue on symfony, please send it
> > to
> > >> security at symfony-project.com
>
> > >> 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@googlegroups.com
> > >> To unsubscribe from this group, send email to
> > >> symfony-users+unsubscr...@googlegroups.com > >>  legroups.com>
> > >> For more options, visit this group at
> > >>http://groups.google.com/group/symfony-users?hl=en
>
> > > --
> > > If you want to report a vulnerability issue on symfony, please send it to
> > > security at symfony-project.com
>
> > > 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@googlegroups.com
> > > To unsubscribe from this group, send email to
> > > symfony-users+unsubscr...@googlegroups.com > >  legroups.com>
> > > For more options, visit this group at
> > >http://groups.google.com/group/symfony-users?hl=en
>
> > --
> > If you want to report a vulnerability issue on symfony, please send it to
> > security at symfony-project.com
>
> > 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@googlegroups.com
> > To unsubscribe from this group, send email to
> > symfony-users+unsubscr...@googlegroups.com > legroups.com>
> > For more options, visit this group at
> >http://groups.google.com/group/symfony-users?hl=en
>
> > To unsubscribe from this group, send email to symfony-users+
> > unsubscribegooglegroups.com or reply to this email with the words "REMOVE
> > ME" as the subject.

-- 
If you want to report a vulnerability issue on symfony, please send it to 
security at symfony-project.com

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@googlegroups.com
To unsubscribe from this group, send email to
symfony-users+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/symfony-users?hl=en

To unsubscribe from this group, send email to 
symfony-users+unsubscribegooglegroups.com or reply to this email with the words 
"REMOVE ME" as the subject.


Re: [symfony-users] Re: Accessing user session from a custom routing class

2010-03-24 Thread Alan Bem
On Wed, Mar 24, 2010 at 4:08 PM, HiDDeN wrote:

> I have tried sfRoute::$context
>


> And from a custom routing class it returns "Fatal error: Access to
> undeclared static property: sfRoute::$context"
>

sfRoute::$context is just a notation. sfRoute::$context is available through
$this->context inside of your custom route.

-- 
If you want to report a vulnerability issue on symfony, please send it to 
security at symfony-project.com

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@googlegroups.com
To unsubscribe from this group, send email to
symfony-users+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/symfony-users?hl=en

To unsubscribe from this group, send email to 
symfony-users+unsubscribegooglegroups.com or reply to this email with the words 
"REMOVE ME" as the subject.


Re: [symfony-users] Re: Accessing user session from a custom routing class

2010-03-24 Thread Tom Haskins-Vaughan
Looks like there's some good stuff here:

http://www.symfony-project.org/more-with-symfony/1_4/en/02-Advanced-Routing

On Wed, Mar 24, 2010 at 11:28 AM, Alan Bem  wrote:
> On Wed, Mar 24, 2010 at 4:08 PM, HiDDeN 
> wrote:
>>
>> I have tried sfRoute::$context
>
>
>>
>> And from a custom routing class it returns "Fatal error: Access to
>> undeclared static property: sfRoute::$context"
>
> sfRoute::$context is just a notation. sfRoute::$context is available through
> $this->context inside of your custom route.
>
> --
> If you want to report a vulnerability issue on symfony, please send it to
> security at symfony-project.com
>
> 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@googlegroups.com
> To unsubscribe from this group, send email to
> symfony-users+unsubscr...@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/symfony-users?hl=en
>
> To unsubscribe from this group, send email to
> symfony-users+unsubscribegooglegroups.com or reply to this email with the
> words "REMOVE ME" as the subject.
>

-- 
If you want to report a vulnerability issue on symfony, please send it to 
security at symfony-project.com

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@googlegroups.com
To unsubscribe from this group, send email to
symfony-users+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/symfony-users?hl=en

To unsubscribe from this group, send email to 
symfony-users+unsubscribegooglegroups.com or reply to this email with the words 
"REMOVE ME" as the subject.