Makes route definitions.
public static actions( string $name, string $controller, array $actions, array $options = [] ) : array
$name
$controller
$actions
$options
The following options are available:
only
except
id_name
id
id_regex
\d+
as
public static resource( string $name, string $controller, array $options = [] ) : array
Makes route definitions for a resource.
actions
protected static normalize_options( array $options ) : array
Normalizes options.
protected static get_resource_actions( void ) : array
Returns default resource actions.
protected static filter_actions( array $actions, array $options = [] ) : array
Filters actions according to only/except options.
protected static resolve_patterns( string $name, array $actions, array $options ) : array
Replaces pattern placeholders.
ACTION_INDEX : string
'index'
ACTION_NEW : string
'new'
ACTION_CREATE : string
'create'
ACTION_SHOW : string
'show'
ACTION_EDIT : string
'edit'
ACTION_UPDATE : string
'update'
ACTION_DELETE : string
'delete'
OPTION_ID_NAME : string
'id_name'
OPTION_ID_REGEX : string
'id_regex'
OPTION_ONLY : string
'only'
OPTION_EXCEPT : string
'except'
OPTION_AS : string
'as'
OPTION_ACTIONS : string
'actions'
SEPARATOR : string
':'
CONTROLLER_ACTION_SEPARATOR : string
'#'