<?php
/**
 * Generated: 2014-03-26 11:25:16
 * @author Rtn_Module_Tool
 */

class Page_Module_Route extends Eppe_Module_RouteAbstract {

	public function getRoutes() {
		return [
            'page-show-l2' => new Zend_Controller_Router_Route('/artykul/:main/:slug', array(
				'module' => 'Page',
				'controller' => 'index',
				'action' => 'index',
                'main' => ':main',
                'slug' => ':slug'
			)),
//            'page-show-l3' => new Zend_Controller_Router_Route('/:main/:slug/:level3', array(
//				'module' => 'Page',
//				'controller' => 'index',
//				'action' => 'index',
//                'main' => ':main',
//                'slug' => ':slug',
//                'level3' => ':level3'
//			)),
		];
	}

}