Skip to content

Instantly share code, notes, and snippets.

@stefanotorresi
Created May 17, 2013 14:31
Show Gist options
  • Save stefanotorresi/5599403 to your computer and use it in GitHub Desktop.
Save stefanotorresi/5599403 to your computer and use it in GitHub Desktop.
<?php
return array(
'router' => array(
'routes' => array(
'contact' => array(
'type' => 'Literal',
'options' => array(
'route' => '/contacts',
'defaults' => array(
'controller' => 'ContactController',
),
),
'may_terminate' => false,
'chain_routes' => array(
array(
'type' => 'Method',
'options' => array(
'verb' => 'get',
'defaults' => array(
'action' => 'index',
),
),
),
),
),
'contact/process' => array(
'type' => 'Literal',
'options' => array(
'route' => '/contacts',
'defaults' => array(
'controller' => 'ContactController',
),
),
'may_terminate' => false,
'chain_routes' => array(
array(
'type' => 'Method',
'options' => array(
'verb' => 'post',
'defaults' => array(
'action' => 'process',
),
),
),
),
),
),
),
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment