我来自阿根廷写作,原谅我的英语不大。 我有一些问题与模块ZfcUser
和zfcuserDoctrineORM
。 我需要把它们融入我的项目。 我与Zend框架2,学说2.3和PostgreSQL的工作,这是我第一次使用这些工具的工作。 出于这个原因,有我不称霸好很多事情,我已经包含在我的所有模块/config/application.config.php
和我的连接是我在数据库中配置/config/autoload/local.php
Local.php
return array( 'doctrine' => array( 'connection' => array( 'orm_default' =>array( 'driverClass' => 'Doctrine\DBAL\Driver\PDOPgSql\Driver', 'params' => array( 'host' => 'localhost', 'port' => '5432', 'user' => 'postgres', 'password' => 'postgres', 'dbname' => 'ministerio', ) ) ) ), );
application.config.php
return array( 'modules' => array( 'Application', 'DoctrineModule', 'DoctrineORMModule', 'Reeser', // Name of my module 'ZfcBase', 'ZfcUser', 'ZfcUserDoctrineORM', ), 'module_listener_options' =>array( 'config_glob_paths' =>array( 'config/autoload/{,*.}{global,local}.php', ), 'module_paths' =>array( './module', './vendor', ), ), );
为了我的地图数据库中,我利用教义的注解,我有我自己的实体的用户我的模块中产生。
我加了配置档案zfcuser.global.php
和zfcuserdoctrineorm.global.php
在我的自动加载的目录,但我不知道如何对它们进行配置,使档案承认我的实体。
到zfcuser.global.php
'zend_db_adapter' => 'Zend\Db\Adapter\Adapter', // should this comment it? 'user_entity_class' => 'Reeser\Entity\User', 'login_redirect_route' => 'Reeser/index/index.phtml', return array( 'zfcuser' => $settings, // How I configure this code? 'service_manager' =>array( 'aliases' => array( 'zfcuser_zend_db_adapter' => (isset($settings['zend_db_adapter'])) ? $settings['zend_db_adapter']: 'Zend\Db\Adapter\Adapter', ), ), );
到zfcuserdoctrineorm.global.php
return array( 'doctrine' => array( 'driver' => array( 'zfcuser_driver' =>array( 'class' => 'Doctrine\ORM\Mapping\Driver\AnnotationDriver', 'cache' => 'array', 'paths' => array(__DIR__ .'/../src/Reeser/Entity') ), 'orm_default' =>array( 'drivers' => array( 'ZfcUser\Entity' => 'zfcuser_driver' ) ) ) ), );
我看到模块zfcuserDoctrineORM
使用XML的。 可以在模块可适于与注释工作? 如果这是可能的,我怎么我的实体用户适应这个模块? 我应该修改的档案?