<?php

/**
 * Generated: 2014-03-24 15:01:35
 * @author Rtn_Module_Tool
 */
class Conference_Module_Route extends Eppe_Module_RouteAbstract {

	public function getRoutes() {
		return [
		    'conference-gorup' => new Zend_Controller_Router_Route('/konferencje/:id/:slug', array(
			'module' => 'Conference',
			'controller' => 'index',
			'action' => 'index',
			'id' => ':id',
			'slug' => ':slug'
			    )),
		    'conference-show' => new Zend_Controller_Router_Route('/konferencja/:group_slug/:id/:slug', array(
			'module' => 'Conference',
			'controller' => 'index',
			'action' => 'show',
			'group_slug' => ':group_slug',
			'id' => ':id',
			'slug' => ':slug'
			    ))
		];
	}

}
