<?php
/**
 * Generated: 2014-03-24 15:01:35
 * @author Rtn_Module_Tool
 */
class Bip_Module_Route extends Eppe_Module_RouteAbstract {
	public function getRoutes() {
		return [
            'bip' => new Zend_Controller_Router_Route('/bip', array(
				'module' => 'Bip',
				'controller' => 'index',
				'action' => 'index',
			)),
            'bip-search' => new Zend_Controller_Router_Route('/bip-search', array(
				'module' => 'Bip',
				'controller' => 'index',
				'action' => 'search',
				'text' => ':text'
			)),
	    'bip-article' => new Zend_Controller_Router_Route('/bip/:catid/:id/:slug', array(
			'module' => 'Bip',
			'controller' => 'index',
			'action' => 'show',
			'catid' => ':catid',
			'id' => ':id',
			'slug' => ':slug'
		)),
            'bip-group' => new Zend_Controller_Router_Route('/bip/:id/:slug', array(
				'module' => 'Bip',
				'controller' => 'index',
				'action' => 'index',
                'id' => ':id',
                'slug' => ':slug'
			)),
		];
	}
}