Index Method

The index method is an abstract method that required on each extended class from SENE_Controller and its derivatives. The index method are accessible from URL Request and then it will be a fallback method for empty URL request.

Basic Usage

Here is the basic usage index method from SENE_Controller class.

<?php
class Name_Class_Guys extends SENE_Controller {
  public function __construct(){
    parent::__construct();
  }
  public function index(){
    ...
  }
}