Jump to content

rohitnanda

New Members
  • Posts

    5
  • Joined

  • Last visited

    Never

Posts posted by rohitnanda

  1. think it should be pretty simple. In your app_controller, you could

    probably just add this, likely in the afterFilter() method, so that

    you can process any login info first:

     

    function afterFilter () {

     

        if ( $isUserLoggedIn ) {

            $this->layout = 'logged_in_layout';

        } else {

            $this->layout = 'some_other_layout';

        }

    }

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.