我使用Propel ORM進行模型&映射。我的模特在/模特兒身上。
我已經添加了一行到我的index.php文件,以確保他發現我的模型:無法訪問新命名空間中的模型
// Ensure library/ is on include_path
set_include_path(implode(PATH_SEPARATOR, array(
realpath(APPLICATION_PATH . '/../library'),
realpath(APPLICATION_PATH . '/models'),//propel
get_include_path(),
)));
我可以使用查詢在我的模塊,工作正常。但是當我想在我的Acl Helper中使用它時,他無法找到模型...。
我在我的Zend Framework項目中創建了名爲「GentseFeesten」的命名空間。
我已經添加到了我的bootstrap.php:
protected function _initAutoload()
{
$moduleLoader = new Zend_Application_Module_Autoloader(array(
'namespace' => '',
'basePath' => APPLICATION_PATH));
$autoloader = Zend_Loader_Autoloader::getInstance();
$autoloader->registerNamespace('GentseFeesten_');
return $moduleLoader;
}
在我GentseFeesten庫我有:
- Controller
- Helper
- Plugin
而且在助手我有 「Acl.php」。我有一個函數setRoles():
private function setRoles() {
// Database query
$roles = RoleQuery::create()
->orderById()
->find();
foreach ($roles as $role) {
if($parentrole == 0)
{
$this->local_acl->addRole(new Zend_Acl_Role($role->getRole()));
}
else{
$this->local_acl->addRole(new Zend_Acl_Role($role->getRole()), $parentrole);
}
$parentrole = $role->getRole();
}
}
但是RoleQuery找不到。錯誤:
Fatal error: Class 'RoleQuery' not found in /Applications/MAMP/htdocs/GentseFeesten/library/GentseFeesten/Controller/Helper/Acl.php on line 35
我包括我的Acl插件在引導這樣的:
new GentseFeesten_Controller_Helper_Acl($this->getResource('frontController'));
$frontController = Zend_Controller_Front::getInstance();
$frontController->registerPlugin(new GentseFeesten_Controller_Plugin_Acl());
有誰知道爲什麼他不能找到我的模型的插件?