system/libraries/Controller.php
Class: Controller_Core
abstract class Controller_Core
Kohana Controller class. The controller class must be extended to work properly, so this class is defined as abstract.
Methods
Controller_Core -> __construct
public function __construct
Loads URI, and Input into this controller.
Return: void
Controller_Core -> __call
public function __call
Handles methods that do not exist.
Parameters:
- string method
- method name
- array args
- arguments
Return: void
Controller_Core -> _kohana_load_view
public function _kohana_load_view
Includes a View within the controller scope.
Parameters:
- string kohana_view_filename
- view filename
- array kohana_input_data
- array of view variables
Return: string