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.

In my project, I'm displaying my views in a lightbox and I don't want the top-navigation to be loaded. I'm using:

$this->render('ajax');

That way, only the content is loaded and it looks nice inside the lightbox.

The problem is, when I share the view-link.

Clicking the view-link only shows the view page WITHOUT top-navigation (etc.)

Any idea, how I could change the render-value only for the view-mehtod?

share|improve this question

2 Answers

up vote 1 down vote accepted

Typically this is where the request handler comes in to play.

Try something like this:

if ($this->request->is('ajax')) {
    $this->layout = 'ajax';
    $this->render('ajax');

} else {
    $this->layout = 'regular_layout';
    $this->render('not_ajax');
}

When accessing app/controller/action directly, the "non-ajax" view/layout will be rendered instead.

More in the docs.

share|improve this answer
nice solution, very straight forward. Thank you! – user1121239 Jan 17 at 12:44

You could use $this->referer() to see if the user came from your site or another site, if they came from another site (external) then either render a different view or just redirect the user to another page .. you could do the same thing with sessions rather than refereeing address, checking if the user has a session (you would have had to set previously) ...

share|improve this answer
Thank you, depending on the project, this might also be a nice way. – user1121239 Jan 17 at 12:45
No worries. Upon reflection, I'd use Ross' solution :D – Happy Jan 17 at 12:47

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.