Welcome Guest, Not a member yet? Register   Sign In
Can i load view directly from database???
#4

[eluser]oddman[/eluser]
Ah okay, I see what you're doing now. If that's the case, have the views check to ensure that the logged in user is an admin - you can do this by setting for example, $data['admin'] = true; in your controller method. So for example, it might look like this:

Code:
class Blog extends Controller {
    function post()
    {
        if ('admin' == $this->session->userdata('user_level')) {
            $data['admin'] = true;
        }
        else {
            $data['admin'] = false;
        }
        
        $this->load->view('post', $data);
    }
}

then in the view, you'd do this:

Code:
<?php if (true == $admin) { ?>do this<?php } ?>

I understand what you mean about views - generally I try and keep my views to separate folders as well, defined by controller. Have you tried doing:

Code:
$this->load->view('folder/view')

? I've never actually tried, so don't know if it would work. Hope this helps! Smile


Messages In This Thread
Can i load view directly from database??? - by El Forum - 05-26-2008, 04:18 AM
Can i load view directly from database??? - by El Forum - 05-26-2008, 05:09 AM
Can i load view directly from database??? - by El Forum - 05-26-2008, 05:31 AM
Can i load view directly from database??? - by El Forum - 05-26-2008, 06:03 AM
Can i load view directly from database??? - by El Forum - 05-26-2008, 06:04 AM
Can i load view directly from database??? - by El Forum - 05-26-2008, 06:40 AM
Can i load view directly from database??? - by El Forum - 05-26-2008, 06:46 AM
Can i load view directly from database??? - by El Forum - 05-26-2008, 08:46 AM
Can i load view directly from database??? - by El Forum - 05-26-2008, 09:19 AM
Can i load view directly from database??? - by El Forum - 05-26-2008, 10:18 AM
Can i load view directly from database??? - by El Forum - 05-26-2008, 10:42 AM
Can i load view directly from database??? - by El Forum - 05-26-2008, 10:53 AM
Can i load view directly from database??? - by El Forum - 05-26-2008, 11:02 AM



Theme © iAndrew 2016 - Forum software by © MyBB