-
Notifications
You must be signed in to change notification settings - Fork 0
Welcome
Mathieu Nayrolles edited this page Jan 20, 2016
·
1 revision
Application Controller Class
This class object is the super class that every library in CodeIgniter will be assigned to.
- Class name: Welcome
- Namespace:
- Parent class: CI_Controller
private object $instance
Reference to the CI singleton
- Visibility: private
- This property is static.
mixed Welcome::index()
Index Page for this controller.
Maps to the following URL http://example.com/index.php/welcome
- or - http://example.com/index.php/welcome/index
- or - Since this controller is set as the default controller in config/routes.php, it's displayed at http://example.com/
So any other public methods not prefixed with an underscore will map to /index.php/welcome/<method_name>
- Visibility: public
void CI_Controller::__construct()
Class constructor
- Visibility: public
- This method is defined by CI_Controller
object CI_Controller::get_instance()
Get the CI singleton
- Visibility: public
- This method is static.
- This method is defined by CI_Controller