<?php
/**
 * Generated: 2013-11-04 11:03:31
 * @author Rtn_Module_Tool
 */
class Newsletter_Module_Route extends Main_Newsletter_Module_Route {
	public function getRoutes() {
		return [
			'nl-confirm' => new Zend_Controller_Router_Route('/zapis-do-newslettera/:id/:hash', array(
				'module' => 'Newsletter',
				'controller' => 'index',
				'action' => 'confirm-newsletter',
                'id' => ':id',
                'hash' => ':hash'
			)),
			'nl-sing-out' => new Zend_Controller_Router_Route('/wypisanie-z-newslettera/:id/:hash', array(
				'module' => 'Newsletter',
				'controller' => 'index',
				'action' => 'sign-out',
                'id' => ':id',
                'hash' => ':hash'
			))
		];
	}
}