This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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' |
NewerOlder