<?php
/**
 * Generated: 2014-03-12 11:08:42
 * @author Rtn_Module_Tool
 */

class Main_News_Module_Route extends Eppe_Module_RouteAbstract {

	public function getRoutes() {
		return [
			'news' => new Zend_Controller_Router_Route('/news', array(
				'module' => 'News',
				'controller' => 'index',
				'action' => 'index',
			)),
			'news-show-item' => new Zend_Controller_Router_Route('/aktualnosc/:newsid', array(
				'module' => 'News',
				'controller' => 'index',
				'action' => 'show',
				'newsid' => null,
			)),
			'news-image' => new Zend_Controller_Router_Route('/news-image/:newsid/:width/:height', array(
				'module' => 'News',
				'controller' => 'index',
				'action' => 'image',
				'newsid' => null,
				'width' => null,
				'height' => null,
			)),
		];
	}

}