Welcome Guest, Not a member yet? Register   Sign In
/admin and relative paths
#4

[eluser]InsiteFX[/eluser]
Create a helper file!

Something like this:
Code:
// some place in your admin section.
public $user_model = 'admin/user_model';

// application/helpers/admin_helper.php
if ( ! function_exists('get_user_model'))
    function get_user_model()
    {
        $CI =& get_instance();
        // were ever you save the variable with the class name example: admin.
        return $CI->admin->$user_model;
    }
}

InsiteFX


Messages In This Thread
/admin and relative paths - by El Forum - 04-12-2011, 03:44 PM
/admin and relative paths - by El Forum - 04-12-2011, 04:21 PM
/admin and relative paths - by El Forum - 04-13-2011, 06:35 AM
/admin and relative paths - by El Forum - 04-13-2011, 07:21 AM



Theme © iAndrew 2016 - Forum software by © MyBB