Welcome Guest, Not a member yet? Register   Sign In
The Authentication Library 1.0.6
#35

[eluser]NateL[/eluser]
A few questions after using the Auth library for a bit...

How does the auth library pass information to the view?

If I have the following controller (note the 'pagetitle'):
Code:
class Pages extends Application
{
    
    function Pages()
    {
        parent::Application();
                
        $this->auth->restrict('admin');
        $this->load->model($this->models."pagesmodel", 'pages');
        
        $data['pagetitle'] = 'Page Management';
    }
    function manage(){
        $data['pages'] = $this->pages->get_all_pages(); // Grab an array of all pages from the database
        
        $this->auth->view('pages/manage');
    }
}

My view (manage.php) will display an array of pages (i have just var_dump($data) in manage.php)

What I don't understand is why $data['pagetitle'] = 'Page Management'; does not come through?

However, if I put $data['pagetitle'] = 'Page Management'; inside the manage method, it comes through.

any ideas?



Some other questions and suggestions...
Do you intend on adding additional information to the "edit user" page? Right now, all a user can edit is their e-mail address.

Really, users should be able to modify their password too. Admins should be able to change their user group from a drop down.


Messages In This Thread
The Authentication Library 1.0.6 - by El Forum - 06-23-2009, 06:21 AM
The Authentication Library 1.0.6 - by El Forum - 07-09-2009, 12:09 PM
The Authentication Library 1.0.6 - by El Forum - 07-09-2009, 12:58 PM
The Authentication Library 1.0.6 - by El Forum - 07-12-2009, 01:30 PM
The Authentication Library 1.0.6 - by El Forum - 07-12-2009, 03:07 PM
The Authentication Library 1.0.6 - by El Forum - 07-12-2009, 07:08 PM
The Authentication Library 1.0.6 - by El Forum - 07-13-2009, 09:22 AM
The Authentication Library 1.0.6 - by El Forum - 07-21-2009, 05:50 PM
The Authentication Library 1.0.6 - by El Forum - 07-27-2009, 09:20 AM
The Authentication Library 1.0.6 - by El Forum - 07-27-2009, 09:34 AM
The Authentication Library 1.0.6 - by El Forum - 07-28-2009, 12:14 PM
The Authentication Library 1.0.6 - by El Forum - 07-28-2009, 12:27 PM
The Authentication Library 1.0.6 - by El Forum - 07-28-2009, 12:47 PM
The Authentication Library 1.0.6 - by El Forum - 07-29-2009, 01:09 PM
The Authentication Library 1.0.6 - by El Forum - 08-03-2009, 01:32 AM
The Authentication Library 1.0.6 - by El Forum - 08-03-2009, 04:59 AM
The Authentication Library 1.0.6 - by El Forum - 08-03-2009, 05:46 AM
The Authentication Library 1.0.6 - by El Forum - 08-03-2009, 10:13 AM
The Authentication Library 1.0.6 - by El Forum - 08-04-2009, 09:55 AM
The Authentication Library 1.0.6 - by El Forum - 08-10-2009, 09:21 PM
The Authentication Library 1.0.6 - by El Forum - 08-11-2009, 06:41 AM
The Authentication Library 1.0.6 - by El Forum - 08-11-2009, 09:54 AM
The Authentication Library 1.0.6 - by El Forum - 09-06-2009, 02:55 PM
The Authentication Library 1.0.6 - by El Forum - 09-06-2009, 09:50 PM
The Authentication Library 1.0.6 - by El Forum - 09-07-2009, 06:38 PM
The Authentication Library 1.0.6 - by El Forum - 09-07-2009, 07:51 PM
The Authentication Library 1.0.6 - by El Forum - 09-08-2009, 02:35 AM
The Authentication Library 1.0.6 - by El Forum - 09-08-2009, 11:23 AM
The Authentication Library 1.0.6 - by El Forum - 09-08-2009, 11:48 AM
The Authentication Library 1.0.6 - by El Forum - 09-08-2009, 12:57 PM
The Authentication Library 1.0.6 - by El Forum - 09-08-2009, 03:15 PM
The Authentication Library 1.0.6 - by El Forum - 09-10-2009, 12:38 AM
The Authentication Library 1.0.6 - by El Forum - 09-10-2009, 01:04 AM
The Authentication Library 1.0.6 - by El Forum - 09-10-2009, 07:54 PM
The Authentication Library 1.0.6 - by El Forum - 09-11-2009, 10:06 PM
The Authentication Library 1.0.6 - by El Forum - 09-12-2009, 12:06 AM
The Authentication Library 1.0.6 - by El Forum - 09-12-2009, 08:44 AM
The Authentication Library 1.0.6 - by El Forum - 10-02-2009, 01:14 PM
The Authentication Library 1.0.6 - by El Forum - 10-02-2009, 01:32 PM
The Authentication Library 1.0.6 - by El Forum - 10-02-2009, 01:50 PM
The Authentication Library 1.0.6 - by El Forum - 10-02-2009, 02:02 PM
The Authentication Library 1.0.6 - by El Forum - 10-02-2009, 02:06 PM
The Authentication Library 1.0.6 - by El Forum - 10-02-2009, 02:34 PM
The Authentication Library 1.0.6 - by El Forum - 10-05-2009, 04:31 AM
The Authentication Library 1.0.6 - by El Forum - 10-07-2009, 12:55 AM
The Authentication Library 1.0.6 - by El Forum - 10-07-2009, 06:53 AM
The Authentication Library 1.0.6 - by El Forum - 10-07-2009, 07:12 AM
The Authentication Library 1.0.6 - by El Forum - 10-07-2009, 09:48 AM
The Authentication Library 1.0.6 - by El Forum - 10-07-2009, 03:03 PM
The Authentication Library 1.0.6 - by El Forum - 10-07-2009, 03:43 PM
The Authentication Library 1.0.6 - by El Forum - 10-08-2009, 06:10 AM
The Authentication Library 1.0.6 - by El Forum - 10-08-2009, 07:41 AM
The Authentication Library 1.0.6 - by El Forum - 10-08-2009, 08:23 AM
The Authentication Library 1.0.6 - by El Forum - 10-08-2009, 10:25 AM
The Authentication Library 1.0.6 - by El Forum - 10-08-2009, 10:35 AM
The Authentication Library 1.0.6 - by El Forum - 10-09-2009, 01:44 AM
The Authentication Library 1.0.6 - by El Forum - 10-09-2009, 07:46 AM
The Authentication Library 1.0.6 - by El Forum - 10-09-2009, 09:22 AM
The Authentication Library 1.0.6 - by El Forum - 10-09-2009, 09:24 AM
The Authentication Library 1.0.6 - by El Forum - 10-16-2009, 03:06 AM
The Authentication Library 1.0.6 - by El Forum - 10-16-2009, 03:07 AM
The Authentication Library 1.0.6 - by El Forum - 10-16-2009, 04:19 AM
The Authentication Library 1.0.6 - by El Forum - 10-16-2009, 04:33 AM
The Authentication Library 1.0.6 - by El Forum - 10-24-2009, 01:28 AM
The Authentication Library 1.0.6 - by El Forum - 11-01-2009, 04:02 PM
The Authentication Library 1.0.6 - by El Forum - 11-02-2009, 09:39 PM
The Authentication Library 1.0.6 - by El Forum - 11-04-2009, 02:58 PM
The Authentication Library 1.0.6 - by El Forum - 11-06-2009, 08:52 AM
The Authentication Library 1.0.6 - by El Forum - 11-06-2009, 12:24 PM
The Authentication Library 1.0.6 - by El Forum - 11-06-2009, 12:31 PM
The Authentication Library 1.0.6 - by El Forum - 11-06-2009, 12:36 PM
The Authentication Library 1.0.6 - by El Forum - 11-06-2009, 12:37 PM
The Authentication Library 1.0.6 - by El Forum - 11-12-2009, 03:32 PM
The Authentication Library 1.0.6 - by El Forum - 11-12-2009, 05:25 PM
The Authentication Library 1.0.6 - by El Forum - 11-20-2009, 06:12 AM
The Authentication Library 1.0.6 - by El Forum - 11-20-2009, 08:38 AM
The Authentication Library 1.0.6 - by El Forum - 11-30-2009, 08:47 PM
The Authentication Library 1.0.6 - by El Forum - 12-03-2009, 12:53 PM
The Authentication Library 1.0.6 - by El Forum - 12-03-2009, 01:23 PM
The Authentication Library 1.0.6 - by El Forum - 12-07-2009, 11:22 AM
The Authentication Library 1.0.6 - by El Forum - 12-20-2009, 05:35 AM
The Authentication Library 1.0.6 - by El Forum - 12-27-2009, 02:03 PM
The Authentication Library 1.0.6 - by El Forum - 01-14-2010, 11:29 AM
The Authentication Library 1.0.6 - by El Forum - 01-31-2010, 12:27 AM
The Authentication Library 1.0.6 - by El Forum - 01-31-2010, 02:09 AM
The Authentication Library 1.0.6 - by El Forum - 02-08-2010, 02:16 PM
The Authentication Library 1.0.6 - by El Forum - 03-08-2010, 05:16 PM
The Authentication Library 1.0.6 - by El Forum - 03-08-2010, 07:28 PM
The Authentication Library 1.0.6 - by El Forum - 03-17-2010, 09:29 AM
The Authentication Library 1.0.6 - by El Forum - 03-19-2010, 01:22 AM
The Authentication Library 1.0.6 - by El Forum - 03-19-2010, 03:51 AM
The Authentication Library 1.0.6 - by El Forum - 03-19-2010, 10:42 AM
The Authentication Library 1.0.6 - by El Forum - 05-04-2010, 08:17 PM
The Authentication Library 1.0.6 - by El Forum - 05-20-2010, 12:40 PM
The Authentication Library 1.0.6 - by El Forum - 05-29-2010, 06:33 PM
The Authentication Library 1.0.6 - by El Forum - 03-20-2011, 12:12 PM
The Authentication Library 1.0.6 - by El Forum - 05-22-2011, 06:23 AM
The Authentication Library 1.0.6 - by El Forum - 03-12-2012, 06:28 AM
The Authentication Library 1.0.6 - by El Forum - 03-12-2012, 07:24 AM
The Authentication Library 1.0.6 - by El Forum - 03-12-2012, 07:49 AM
The Authentication Library 1.0.6 - by El Forum - 03-28-2012, 10:56 PM
The Authentication Library 1.0.6 - by El Forum - 03-29-2012, 12:24 AM
The Authentication Library 1.0.6 - by El Forum - 03-29-2012, 07:08 AM
The Authentication Library 1.0.6 - by El Forum - 10-06-2012, 08:01 AM
The Authentication Library 1.0.6 - by El Forum - 03-18-2013, 08:41 PM



Theme © iAndrew 2016 - Forum software by © MyBB