Welcome Guest, Not a member yet? Register   Sign In
Variable in MY_Controller
#6

[eluser]adamp1[/eluser]
No you would do this
Code:
class Public_Controller extends Controller {

    function Public_Controller() {
        parent::Controller();
        
        $data['user'] = array('user_id' => $this->session->userdata('user_id'), 'username' => $this->session->userdata('username'));
        $this->load->vars($data);

    }
}

Then in the view you could just use $user. It does exactly the same as the second parameter in $this->load->view() but allows you to do it in a constructor.

Quote:This function takes an associative array as input and generates variables using the PHP extract function. This function produces the same result as using the second parameter of the $this->load->view() function above. The reason you might want to use this function independently is if you would like to set some global variables in the constructor of your controller and have them become available in any view file loaded from any function. You can have multiple calls to this function. The data get cached and merged into one array for conversion to variables.


Messages In This Thread
Variable in MY_Controller - by El Forum - 03-04-2008, 09:01 AM
Variable in MY_Controller - by El Forum - 03-04-2008, 09:11 AM
Variable in MY_Controller - by El Forum - 03-04-2008, 09:13 AM
Variable in MY_Controller - by El Forum - 03-04-2008, 09:15 AM
Variable in MY_Controller - by El Forum - 03-04-2008, 09:19 AM
Variable in MY_Controller - by El Forum - 03-04-2008, 09:21 AM
Variable in MY_Controller - by El Forum - 03-04-2008, 09:25 AM
Variable in MY_Controller - by El Forum - 03-04-2008, 12:30 PM
Variable in MY_Controller - by El Forum - 03-04-2008, 12:32 PM
Variable in MY_Controller - by El Forum - 03-05-2008, 03:13 AM
Variable in MY_Controller - by El Forum - 03-05-2008, 05:08 AM
Variable in MY_Controller - by El Forum - 03-05-2008, 05:37 AM
Variable in MY_Controller - by El Forum - 03-05-2008, 05:43 AM
Variable in MY_Controller - by El Forum - 03-05-2008, 05:51 AM
Variable in MY_Controller - by El Forum - 03-05-2008, 05:51 AM



Theme © iAndrew 2016 - Forum software by © MyBB