Welcome Guest, Not a member yet? Register   Sign In
multiple views per controller
#5

[eluser]Pascal Kriete[/eluser]
[quote author="Michael Wales" date="1200715586"]Nice!

For all who want to get a header/footer on your pages very easily - without retyping this within every controller - just extend the Controller class with a constructor/destructor.


Code example (not tested, but should work if my thinking is correct), ghetto-fied for PHP4 support:

/application/libraries/MY_Controller.php
Code:
class Public_Controller {
  function Public_Controller() {
    parent::Controller();
    register_shutdown_function(array(&$this, "shutdown"));
    $this->load->view('header');
  }

  // Ghetto destructor for PHP4 support
  function shutdown() {
    $this->load->view('footer');
  }
}
[/quote]

Looks very nice, but doesn't quite work for me. Well for one, you forgot to extend the Controller. But even then the shutdown function gets called (what does the & in front of the $this do?), but it doesn't actually load the view.


Messages In This Thread
multiple views per controller - by El Forum - 01-18-2008, 03:56 PM
multiple views per controller - by El Forum - 01-18-2008, 04:01 PM
multiple views per controller - by El Forum - 01-18-2008, 04:06 PM
multiple views per controller - by El Forum - 01-18-2008, 04:08 PM
multiple views per controller - by El Forum - 01-18-2008, 04:35 PM
multiple views per controller - by El Forum - 01-19-2008, 06:57 AM
multiple views per controller - by El Forum - 01-19-2008, 07:44 AM
multiple views per controller - by El Forum - 01-19-2008, 07:53 AM
multiple views per controller - by El Forum - 01-19-2008, 10:52 AM
multiple views per controller - by El Forum - 01-20-2008, 03:16 AM
multiple views per controller - by El Forum - 01-22-2008, 10:31 PM
multiple views per controller - by El Forum - 01-22-2008, 10:46 PM
multiple views per controller - by El Forum - 01-22-2008, 10:49 PM
multiple views per controller - by El Forum - 01-22-2008, 10:52 PM
multiple views per controller - by El Forum - 01-24-2008, 03:09 PM
multiple views per controller - by El Forum - 01-24-2008, 04:09 PM
multiple views per controller - by El Forum - 01-24-2008, 07:35 PM
multiple views per controller - by El Forum - 01-24-2008, 09:02 PM
multiple views per controller - by El Forum - 01-24-2008, 09:31 PM
multiple views per controller - by El Forum - 01-25-2008, 05:32 AM
multiple views per controller - by El Forum - 01-25-2008, 07:57 AM
multiple views per controller - by El Forum - 01-25-2008, 08:10 AM
multiple views per controller - by El Forum - 01-25-2008, 10:49 AM
multiple views per controller - by El Forum - 01-25-2008, 11:05 AM
multiple views per controller - by El Forum - 01-25-2008, 11:07 AM
multiple views per controller - by El Forum - 01-25-2008, 11:26 AM
multiple views per controller - by El Forum - 01-25-2008, 11:30 AM
multiple views per controller - by El Forum - 01-25-2008, 11:31 AM
multiple views per controller - by El Forum - 01-25-2008, 11:32 AM
multiple views per controller - by El Forum - 01-25-2008, 11:48 AM
multiple views per controller - by El Forum - 01-25-2008, 11:54 AM
multiple views per controller - by El Forum - 01-25-2008, 11:57 AM
multiple views per controller - by El Forum - 01-25-2008, 12:04 PM
multiple views per controller - by El Forum - 01-25-2008, 12:09 PM
multiple views per controller - by El Forum - 01-25-2008, 12:12 PM
multiple views per controller - by El Forum - 01-25-2008, 12:36 PM
multiple views per controller - by El Forum - 01-25-2008, 12:43 PM
multiple views per controller - by El Forum - 01-26-2008, 05:44 PM
multiple views per controller - by El Forum - 01-26-2008, 05:50 PM
multiple views per controller - by El Forum - 01-26-2008, 06:01 PM
multiple views per controller - by El Forum - 01-27-2008, 12:04 AM
multiple views per controller - by El Forum - 01-27-2008, 01:45 PM
multiple views per controller - by El Forum - 01-27-2008, 03:50 PM
multiple views per controller - by El Forum - 01-28-2008, 06:37 PM
multiple views per controller - by El Forum - 01-31-2008, 06:57 AM
multiple views per controller - by El Forum - 01-31-2008, 09:37 AM
multiple views per controller - by El Forum - 02-04-2008, 10:14 AM
multiple views per controller - by El Forum - 02-04-2008, 01:08 PM
multiple views per controller - by El Forum - 02-04-2008, 03:09 PM
multiple views per controller - by El Forum - 02-04-2008, 03:38 PM
multiple views per controller - by El Forum - 02-04-2008, 10:48 PM
multiple views per controller - by El Forum - 02-05-2008, 04:00 AM
multiple views per controller - by El Forum - 02-07-2008, 04:52 AM
multiple views per controller - by El Forum - 03-17-2008, 07:37 AM
multiple views per controller - by El Forum - 02-18-2009, 04:40 PM
multiple views per controller - by El Forum - 05-17-2010, 02:32 PM
multiple views per controller - by El Forum - 05-18-2010, 10:59 AM



Theme © iAndrew 2016 - Forum software by © MyBB