<?php
/**
 * Generated: 2014-03-14 09:25:59
 * @author Rtn_Module_Tool
 */
class News_Module_Route extends Main_News_Module_Route {
	public function getRoutes() {
		return [
			'news' => new Zend_Controller_Router_Route('/news', array(
				'module' => 'News',
				'controller' => 'index',
				'action' => 'index',
			)),
			'news-show' => new Zend_Controller_Router_Route('aktualnosci/:id/:slug', array(
				'module' => 'News',
				'controller' => 'index',
				'action' => 'show',
				'id' => ':id',
				'slug' => ':slug'
			)),
			'news-show-all' => new Zend_Controller_Router_Route('aktualnosci', array(
				'module' => 'News',
				'controller' => 'index',
				'action' => 'show-all'
			)),
		    
		];
	}
}