Download the PHP package brain/cortex without Composer
On this page you can find all versions of the php package brain/cortex. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Package cortex
Short Description Cortex is a package that implements a routing system in WordPress.
License MIT
Homepage https://github.com/Brain-WP/Cortex
Informations about the package cortex
Cortex
Cortex is routing system for WordPress based on FastRoute
Start using Cortex
First of all ensure Composer autoload is loaded.
After that "boot" Cortex:
This can be done as soon as you can, no need to wrap in a hook.
It will not work after 'do_parse_request'
has been fired.
Adding routes
To add routes, it is possible to use 'cortex.routes'
hook, that passes an instance of
RouteCollectionInterface
:
The route pattern (1st argument) syntax is inherited from FastRoute.
The callback passed as second argument receives the array of matches ($routeInfo[2]
in FastRoute)
and has to return an array of arguments for WP_Query
.
QueryRoute
arguments
QueryRoute
constructor accepts as 3rd argument an array of options for
route configuration.
One of them is "template" to force WordPress use a template when the route matches:
As shown above,template
argument can be a relative path to theme (or child theme) folder.
To use a template that resides outside theme folder, template
argument need to be full absolute path
to the template file to use.
There are other arguments, among them:
- "before" and "after", that are callbacks run respectively before and after the callback that returns query arguments is called
- "host" to make the route match only for specific host
- "method" to make the route match only for specific HTTP method (e.g.
POST
orGET
) - "scheme" to make the route match only for specific HTTP scheme (e.g.
https
orhttp
) - "group" to use configuration from one or more "route groups"
- "priority" to force the route evaluation in specific order (lower priority first)
- "merge_query_string" to allow (default) or avoid url query string are merged as query argument to anything returned by route callback
Route groups
A route group is a way to share common settings among routes.
Before assign groups to routes, we need to add groups.
That can be done using 'cortex.groups'
hook, that pass an instance of GroupCollectionInterface
:
A group is instantiated passing an array of values to its constructor.
The value "id" is required. All other values are optional, and can be used to set
any route property (array items in 3rd param of QueryRoute
constructor).
To use properties from a group in a route, the group id has to be set in the 'group'
route property.
'group'
property also accepts an array of group ids, to assign properties
from multiple groups.
Redirect routes
QueryRoute
is just one of the routes shipped with Cortex.
There are others and it is possible to write custom routes implementing Brain\Cortex\Route\RouteInterface
.
Another implementation included in Cortex is RedirectRoute
. As the name suggests,
it is used to redirect urls to other urls.
RedirectRoute
accepts an array of options as well.
Using option is possible to configure HTTP status code to use ('redirect_status'
option, default 302)
and if allows or not redirect to external urls ('redirect_external'
option, default false).
Installation
Via Composer, require brain/cortex
in version ~1.0.0
.
composer require brain/cortex:~1.0.0
You may need to lessen your project's minimum stability requirements.
composer config minimum-stability dev
Minimum Requirements
- PHP 5.5+
- Composer to install
Dependencies
- Any version of PSR7 interfaces (no implementation required)
- FastRoute
License
MIT