Skip to content

Instantly share code, notes, and snippets.

View jamiefdhurst's full-sized avatar

Jamie Hurst jamiefdhurst

View GitHub Profile
@jamiefdhurst
jamiefdhurst / gist:886699
Created March 25, 2011 11:15
Zend Module Route Example
// Add the custom route for the gets action in the index controller of the slot module
$router = Zend_Controller_Front::getInstance()->getRouter();
$route = new Zend_Controller_Router_Route(
'slots/get',
array(
'module' => 'slots',
'controller' => 'index',
'action' => 'get'