Welcome Guest, Not a member yet? Register   Sign In
Tank auth and integration questions
#1

[eluser]Unknown[/eluser]
Hello all, i am fairly new to codeigniter. I am currently trying to build my first project with it, so excuse me if my questions are... dumb.

I have a controller called "Pages" which basicaly loads a view (a complete html template) that contains a header, body and footer. Depeding on the page, it changes the title, the js and css files to be loaded etc. (each page is a method in the pages controller).

So right now, i am trying to integrade tank auth to my design. Tank auth already has a controller that print the login form, register form e.t.c. What i want to do is be able to print the login form inside my own design (the content area). What i am currently doing is this...

I copy the "login" method of the "auth" controller to the "pages" controller and modify slightly like that:

Code:
function login()
    {    
//------------&gt;TANK AUTH CODE HERE <--------------            
            

// my modification
            $login_form = $this->load->view('auth/login_form', $data, TRUE);
            
            $this->page_title = 'Login';
            $this->content = $login_form;
            $this->load->view('page', $this);
        
    }

So i am calling pages/login instead of auth/login and all is fine. But i am wondering, is there an easier and/or better way of doing this?

Thanks for any replies!!!


Messages In This Thread
Tank auth and integration questions - by El Forum - 06-23-2010, 06:16 PM
Tank auth and integration questions - by El Forum - 08-27-2010, 05:49 PM
Tank auth and integration questions - by El Forum - 08-27-2010, 07:03 PM
Tank auth and integration questions - by El Forum - 08-27-2010, 08:06 PM
Tank auth and integration questions - by El Forum - 11-16-2010, 03:34 PM
Tank auth and integration questions - by El Forum - 12-29-2010, 01:14 PM
Tank auth and integration questions - by El Forum - 01-13-2011, 07:08 PM
Tank auth and integration questions - by El Forum - 01-15-2011, 04:38 PM
Tank auth and integration questions - by El Forum - 02-28-2011, 07:15 PM
Tank auth and integration questions - by El Forum - 07-09-2011, 06:28 PM



Theme © iAndrew 2016 - Forum software by © MyBB