$directory $directory : string Sub-directory that contains the requested controller class Type string
$default_controller $default_controller : string Default controller (and method if specific) Type string
$translate_uri_dashes $translate_uri_dashes : boolean Translate URI dashes Determines whether dashes in controller & method segments should be automatically replaced by underscores. Type boolean
$enable_query_strings $enable_query_strings : boolean Enable query strings flag Determines whether to use GET parameters or segment URIs Type boolean
__construct() __construct(array $routing = NULL) : void Class constructor Runs the route mapping function. Parameters array $routing
set_directory() set_directory(string $dir, boolean $append = FALSE) : void Set directory name Parameters string $dir Directory name boolean $append Whether we're appending rather than setting the full value
_set_routing() _set_routing() : void Set route mapping Determines what should be served based on the URI request, as well as any "routes" that have been set in the routing config file.
_set_request() _set_request(array $segments = array()) : void Set request route Takes an array of URI segments as input and sets the class/method to be called. Parameters array $segments URI segments
_validate_request() _validate_request(array $segments) : mixed Validate request Attempts validate the URI request and determine the controller path. Parameters array $segments URI segments Returns mixed — URI segments
_parse_routes() _parse_routes() : void Parse Routes Matches any routes that may exist in the config/routes.php file against the URI to determine if the class/method need to be remapped.