\CI_Router

Router Class

Parses URIs and determines routing

Summary

Methods
Properties
Constants
__construct()
set_class()
set_method()
set_directory()
$config
$routes
$class
$method
$directory
$default_controller
$translate_uri_dashes
$enable_query_strings
No constants found
_set_routing()
_set_request()
_set_default_controller()
_validate_request()
_parse_routes()
No protected properties found
N/A
No private methods found
No private properties found
N/A

Properties

$config

$config : object

CI_Config class object

Type

object

$routes

$routes : array

List of routes

Type

array

$class

$class : string

Current class name

Type

string

$method

$method : string

Current method name

Type

string

$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

Methods

__construct()

__construct(array  $routing = NULL) : void

Class constructor

Runs the route mapping function.

Parameters

array $routing

set_class()

set_class(string  $class) : void

Set class name

Parameters

string $class

Class name

set_method()

set_method(string  $method) : void

Set method name

Parameters

string $method

Method name

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

_set_default_controller()

_set_default_controller() : void

Set default controller

_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.