Welcome Guest, Not a member yet? Register   Sign In
issue with controllers Help!!! :(
#9

[eluser]DJMOHNL[/eluser]
if you make a controller try my template:

i have an editor called PHPdeisgner 7
its realy cool designer for php, with autocomplete and templates you can make.
Look this fill it in with your class name and function name..

the example template below shows you the function/cass name "Test" rename "Test" to your function/class name and you have a new controller...

Code:
<?php

// Here "Test" must be capitalised and uniqe controler name.
// There must be a function to load the parent with the same name of extended controller
class Test extends Controller {

        // Note this function must have the same name as the controller!
        // This loads al files you need, it will also load the parent::Controller you
        // just extended with the name "Test"
    function Test()
    {
        parent::Controller();
        // Below here you load libraries, helpers, configuration files and so on.
                $this->load->helper('myhelper'); // example
            
    }
    
    // on opening  www.yoursite.com/controlername/index*
        // * index wont show in your adress bar.
    function index()
    {
        // Load all (html/php) view files

                $this->load->view('myHeaderTemplate');
                $this->load->view('myViewFile');        
                $this->load->view('myFooterTemplate');
        
        
    }
        
        // Here you make new functions a.k.a url-loade
        // will be shown as: http://yoursite.com/test/namehere
        function namehere()
        {
          // your code goes here...
        }
}

/* End of file */
/* Location: ./system/application/controllers/test.php */

good luck with it.


Messages In This Thread
issue with controllers Help!!! :( - by El Forum - 12-21-2009, 11:12 AM
issue with controllers Help!!! :( - by El Forum - 12-21-2009, 11:55 AM
issue with controllers Help!!! :( - by El Forum - 12-21-2009, 12:08 PM
issue with controllers Help!!! :( - by El Forum - 12-21-2009, 12:45 PM
issue with controllers Help!!! :( - by El Forum - 12-21-2009, 01:23 PM
issue with controllers Help!!! :( - by El Forum - 12-21-2009, 03:33 PM
issue with controllers Help!!! :( - by El Forum - 12-21-2009, 04:00 PM
issue with controllers Help!!! :( - by El Forum - 12-21-2009, 04:01 PM
issue with controllers Help!!! :( - by El Forum - 12-21-2009, 06:31 PM
issue with controllers Help!!! :( - by El Forum - 12-21-2009, 08:14 PM
issue with controllers Help!!! :( - by El Forum - 12-21-2009, 08:27 PM



Theme © iAndrew 2016 - Forum software by © MyBB