Biz yeni bir Zend Framework proje üzerinde çalışıyoruz ve birçok şey bootstrap ile ince olacak:
<?php
class Bootstrap extends Zend_Application_Bootstrap_Bootstrap
{
protected function _initAutoload()
{
$autoloader = new Zend_Application_Module_Autoloader(array(
'namespace' => 'List8D',
'basePath' => dirname(__FILE__),
));
return $autoloader;
}
protected function _initDoctype()
{
$this->bootstrap('view');
$view = $this->getResource('view');
$view->doctype('XHTML1_TRANSITIONAL');
}
protected function _initRegistry()
{
$this->bootstrap('db');
Zend_Registry::set('dbResource', $this->getPluginResource('db'));
}
}
ama biz autoloader bunu bulamazsa dirname(__FILE__)
orada görünüyor böylece List8D ad alanı için ikinci bir yol eklemek istiyorum
Ben belgelerinde bakmak ve aynı ad için birden fazla yolu olan bir ad başka bir şey eklemeye sürü buldum