Welcome Guest, Not a member yet? Register   Sign In
Application layout
#16

[eluser]axle_foley00[/eluser]
[quote author="Colin Williams" date="1183202474"]You need to call parent::Controller() in the constructor[/quote]

D'oh, but of course, how did I miss that one. Good eye there Colin.

Emperius, that's a good point Colin raised. As it says in the documentation, if you have a constructor (ie. a function with the same name as the class or in PHP5 __construct() ) then you must have "parent::Controller() in it. So your controller will now look like this:

Code:
<?php
class Chisinau extends Controller {
  function Chisinau()
  {
    parent::Controller(); // NOTE: This is necessary if you have a constructor, which the function Chisinau is.
    $this->load->library('layout', 'layout_main');
  }

  function index()
  {
    $this->layout->view('/chisinau/index', $data);
    test();
  }
}
?>

Once again thanks for pointing that out Colin.

Does that solve your problem now Emperius?


Messages In This Thread
Application layout - by El Forum - 06-29-2007, 09:00 AM
Application layout - by El Forum - 06-29-2007, 10:15 AM
Application layout - by El Forum - 06-29-2007, 11:01 AM
Application layout - by El Forum - 06-29-2007, 05:14 PM
Application layout - by El Forum - 06-29-2007, 10:58 PM
Application layout - by El Forum - 06-29-2007, 11:24 PM
Application layout - by El Forum - 06-29-2007, 11:32 PM
Application layout - by El Forum - 06-29-2007, 11:34 PM
Application layout - by El Forum - 06-29-2007, 11:36 PM
Application layout - by El Forum - 06-29-2007, 11:43 PM
Application layout - by El Forum - 06-29-2007, 11:47 PM
Application layout - by El Forum - 06-29-2007, 11:55 PM
Application layout - by El Forum - 06-30-2007, 12:01 AM
Application layout - by El Forum - 06-30-2007, 12:21 AM
Application layout - by El Forum - 06-30-2007, 12:37 AM
Application layout - by El Forum - 06-30-2007, 12:44 AM
Application layout - by El Forum - 06-30-2007, 12:55 AM
Application layout - by El Forum - 06-30-2007, 01:05 AM
Application layout - by El Forum - 06-30-2007, 01:22 AM
Application layout - by El Forum - 06-30-2007, 01:27 AM
Application layout - by El Forum - 06-30-2007, 08:02 AM
Application layout - by El Forum - 06-30-2007, 11:46 AM



Theme © iAndrew 2016 - Forum software by © MyBB