/module/Application/config/module.config.php
https://bitbucket.org/phaikawl/pknewsboard · PHP · 169 lines · 155 code · 3 blank · 11 comment · 0 complexity · a86cf32bfb50681b9944a15e02f3b65d MD5 · raw file
- <?php
- /**
- * Zend Framework (http://framework.zend.com/)
- *
- * @link http://github.com/zendframework/ZendSkeletonApplication for the canonical source repository
- * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
- * @license http://framework.zend.com/license/new-bsd New BSD License
- */
- namespace Application;
- return array(
- 'router' => array(
- 'routes' => array(
- 'home' => array(
- 'type' => 'Zend\Mvc\Router\Http\Literal',
- 'options' => array(
- 'route' => '/',
- 'defaults' => array(
- 'controller' => 'Application\Controller\Index',
- 'action' => 'index',
- ),
- ),
- ),
- // The following is a route to simplify getting started creating
- // new controllers and actions without needing to create a new
- // module. Simply drop new controllers in, and you can access them
- // using the path /application/:controller/:action
- 'application' => array(
- 'type' => 'Literal',
- 'options' => array(
- 'route' => '/application',
- 'defaults' => array(
- '__NAMESPACE__' => 'Application\Controller',
- 'controller' => 'Index',
- 'action' => 'index',
- ),
- ),
- 'may_terminate' => true,
- 'child_routes' => array(
- 'default' => array(
- 'type' => 'Segment',
- 'options' => array(
- 'route' => '/[:controller[/:action]]',
- 'constraints' => array(
- 'controller' => '[a-zA-Z][a-zA-Z0-9_-]*',
- 'action' => '[a-zA-Z][a-zA-Z0-9_-]*',
- ),
- 'defaults' => array(
- ),
- ),
- ),
- ),
- ),
- 'article' => array(
- 'type' => 'Literal',
- 'options' => array(
- 'route' => '/article',
- 'defaults' => array(
- '__NAMESPACE__' => 'Application\Controller',
- 'controller' => 'Article',
- 'action' => 'index',
- ),
- ),
- 'may_terminate' => true,
- 'child_routes' => array(
- 'default' => array(
- 'type' => 'Segment',
- 'options' => array(
- 'route' => '/[:action]',
- 'constraints' => array(
- 'action' => '[a-zA-Z][a-zA-Z0-9_-]*',
- ),
- 'defaults' => array(
- ),
- ),
- ),
- ),
- ),
- 'subcom' => array(
- 'type' => 'Literal',
- 'options' => array(
- 'route' => '/subcom',
- 'defaults' => array(
- '__NAMESPACE__' => 'Application\Controller',
- 'controller' => 'Subcom',
- 'action' => 'new',
- ),
- ),
- 'may_terminate' => true,
- 'child_routes' => array(
- 'default' => array(
- 'type' => 'Segment',
- 'options' => array(
- 'route' => '/[:action]',
- 'constraints' => array(
- 'action' => '[a-zA-Z][a-zA-Z0-9_-]*',
- ),
- 'defaults' => array(
- ),
- ),
- ),
- ),
- ),
- ),
- ),
- 'service_manager' => array(
- 'factories' => array(
- 'translator' => 'Zend\I18n\Translator\TranslatorServiceFactory',
- ),
- 'aliases' => array(
- 'dmservice' => 'doctrine.documentmanager.odm_default',
- ),
- ),
- 'translator' => array(
- 'locale' => 'en_US',
- 'translation_file_patterns' => array(
- array(
- 'type' => 'gettext',
- 'base_dir' => __DIR__ . '/../language',
- 'pattern' => '%s.mo',
- ),
- ),
- ),
- 'controllers' => array(
- 'invokables' => array(
- 'Application\Controller\Index' => 'Application\Controller\IndexController',
- 'Application\Controller\Article' => 'Application\Controller\ArticleController',
- 'Application\Controller\Subcom' => 'Application\Controller\SubcomController',
- ),
- ),
- 'view_manager' => array(
- 'display_not_found_reason' => true,
- 'display_exceptions' => true,
- 'doctype' => 'HTML5',
- 'not_found_template' => 'error/404',
- 'exception_template' => 'error/index',
- 'template_map' => array(
- 'layout/layout' => __DIR__ . '/../view/layout/layout.phtml',
- 'application/index/index' => __DIR__ . '/../view/application/index/index.phtml',
- 'application/article/new' => __DIR__ . '/../view/application/article/new.phtml',
- 'error/404' => __DIR__ . '/../view/error/404.phtml',
- 'error/index' => __DIR__ . '/../view/error/index.phtml',
- ),
- 'template_path_stack' => array(
- __DIR__ . '/../view',
- ),
- ),
- 'doctrine' => array(
- 'driver' => array(
- __NAMESPACE__ . '_driver' => array(
- 'class' => 'Doctrine\ODM\CouchDB\Mapping\Driver\AnnotationDriver',
- 'cache' => 'array',
- 'paths' => array(__DIR__ . '/../src/' . __NAMESPACE__ . '/Document')
- ),
- 'zfcuser_xml' => array(
- 'class' => 'Doctrine\ODM\CouchDB\Mapping\Driver\XmlDriver',
- 'paths' => array(__DIR__ . '/xml'),
- ),
- 'odm_default' => array(
- 'drivers' => array(
- __NAMESPACE__ . '\Document' => __NAMESPACE__ . '_driver',
- __NAMESPACE__ . '\XmlDocument' => 'zfcuser_xml'
- )
- )
- ),
- ),
- );