intahwebz/routing

There is no license information available for the latest version (0.9.6) of this package.

0.9.6 2015-03-03 13:12 UTC

This package is auto-updated.

Last update: 2024-04-12 03:52:29 UTC


README

A component for mapping URLs to controllers and parsing variables.

$contentView = [Resource::CONTENT, Privilege::VIEW];

$adminView = [Resource::ADMIN, Privilege::VIEW];

array(

    array(
        'name' => 'image',
        'pattern' => '/{path}/{imageID}/{size}/{filename}',
        'callable' => array(
            'BaseReality\\ImageController',
            'showImage',
        ),
        'requirements' => array(
            'imageID' => '\d+',
            'size' => '\w+',
            'filename' => '[^/]+',
            'path' => "(image|proxy)",
        ),
        'defaults' => array(
            'path' => 'image',
            'size' => null
        ),
        'optional' => array(
    
        )
    ),
    
     array(
        'name' => 'homepage',
        'pattern' => '/',
        'callable' =>array(
            BaseReality\Controller\HomePage::class,
            'show',
        ),
        'access' => $contentView,
     ),
 
 ),