%PDF- %PDF-
Direktori : /var/www/html/bbw/farmaci/kritik-portale/module/Basis/config/ |
Current File : /var/www/html/bbw/farmaci/kritik-portale/module/Basis/config/module.config.php |
<?php /** * Zend Framework (http://framework.zend.com/) * * @link http://github.com/zendframework/ZendSkeletonApplication for the canonical source repository * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ namespace Basis; return array( 'router' => array( 'routes' => array( 'frontend' => [ 'type' => 'Literal', 'route' => '/', 'child_routes' => array( 'default' => array( 'type' => 'Segment', 'options' => array( 'route' => '[:action[/:id]]', 'constraints' => array( 'action' => '[a-zA-Z][a-zA-Z0-9_-]*', 'id' => '[a-zA-Z0-9_-]*', ) ) ) ), 'may_terminate' => true, ], 'basis' => array( 'type' => 'Literal', 'options' => array( 'route' => '/basis', 'defaults' => array( '__NAMESPACE__' => 'Basis\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( ), ), ), ), ), ), ), 'db' => array( //this is for primary adapter.... //other adapter when it needed... 'adapters' => array( 'systemDB' => array( ), 'viewsDB' => array( ), ), ), 'service_manager' => array( 'factories' => array( 'Zend\Db\Adapter\Adapter' => 'Zend\Db\Adapter\AdapterServiceFactory', 'eventBus' => 'Basis\EventBus\EventBus', 'Basis\EventHandlerCollector\FilesystemCollector' => 'Basis\EventHandlerCollector\FilesystemCollectorFactory', 'Basis\Handler\MailHandler' => 'Basis\Handler\MailHandlerFactory' ), 'abstract_factories' => array( 'Zend\Cache\Service\StorageCacheAbstractServiceFactory', 'Zend\Log\LoggerAbstractServiceFactory', 'Zend\Db\Adapter\AdapterAbstractServiceFactory', ), 'aliases' => array( 'translator' => 'MvcTranslator', ), ), 'translator' => array( 'locale' => 'en_US', 'translation_file_patterns' => array( array( 'type' => 'gettext', 'base_dir' => __DIR__ . '/../language', 'pattern' => '%s.mo', ), ), ), 'controllers' => array( 'invokables' => array( 'Basis\Controller\Index' => 'Basis\Controller\IndexController' ), ), '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( 'basis/index/index' => __DIR__ . '/../view/basis/index/index.phtml', ), 'template_path_stack' => array( __DIR__ . '/../view', ), ), 'event_sourcing' => array( 'event_handler_providers' => array( 'Basis\EventHandlerProvider\FilesystemProvider' ) ) );