Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm struggeling a litte with my Cakephp 2.1 application.

I want to render a different layout, if the referer is from an external url. Sadly this is not working :

 if($this->referer(null, true))
     {
        $this->layout = 'lightview';
     }
     else 
     {
        $this->layout = 'default';
     }

Any ideas how I can fix this?

Thanks in advance

share|improve this question

1 Answer

up vote 1 down vote accepted

You got a logical error here:

$this->referer(null, true) // true as second param: only internal

will only return the lightview layout if

  • there is a referer (not always the case)
  • internal referrer

So this is probably not what you want.

You cannot do that this easily. Sometimes there is just no referrer. And even if there is you might still don't know if this person came from somewhere else and just "hid" the referrer. Or then browsed your site (creating internal referrers from here on).

You would need to store the initial result on first visit in the session to check against later on. But even so your approach is highly inconsistent and very likely breakable...

share|improve this answer
thanks. I'm going to use ajax links instead and check if the request is ajax – user1121239 Jan 26 at 11:10

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.