quick-start 設定に基づいたZend Frameworkアプリケーションがあります。
デモを動作させて、新しいモデルクラスをインスタンス化して実際の作業を行うところになりました。私のコントローラーでは、次のような構成パラメーター(application.iniで指定)をモデルコンストラクターに渡します。
class My_UserController extends Zend_Controller_Action
{
public function indexAction()
{
$options = $this->getFrontController()->getParam('bootstrap')->getApplication()->getOptions();
$manager = new My_Model_Manager($options['my']);
$this->view->items = $manager->getItems();
}
}
上記の例はオプションへのアクセスを許可しますが、非常に遠回りです。構成にアクセスするより良い方法はありますか?
私は常に次のinitメソッドをbootstrapに追加して、構成をレジストリに渡します。
protected function _initConfig()
{
$config = new Zend_Config($this->getOptions(), true);
Zend_Registry::set('config', $config);
return $config;
}
これにより、コードが少し短くなります。
class My_UserController extends Zend_Controller_Action
{
public function indexAction()
{
$manager = new My_Model_Manager(Zend_Registry::get('config')->my);
$this->view->items = $manager->getItems();
}
}
バージョン1.8以降、以下のコードをコントローラーで使用できます。
$my = $this->getInvokeArg('bootstrap')->getOption('my');
または、Zend_Registryを使用する代わりに、関連するデータにアクセスできるパブリックメンバー関数を使用して、すべてのアプリケーション情報を含むシングルトンApplicationクラスを作成することもできます。以下に、関連するコードを含むスニペットを見つけることができます(そのまま実行するのではなく、実装方法を説明するためだけです)。
final class Application
{
/**
* @var Zend_Config
*/
private $config = null;
/**
* @var Application
*/
private static $application;
// snip
/**
* @return Zend_Config
*/
public function getConfig()
{
if (!$this->config instanceof Zend_Config) {
$this->initConfig();
}
return $this->config;
}
/**
* @return Application
*/
public static function getInstance()
{
if (self::$application === null) {
self::$application = new Application();
}
return self::$application;
}
/**
* Load Configuration
*/
private function initConfig()
{
$configFile = $this->appDir . '/config/application.xml';
if (!is_readable($configFile)) {
throw new Application_Exception('Config file "' . $configFile . '" is not readable');
}
$config = new Zend_Config_Xml($configFile, 'test');
$this->config = $config;
}
// snip
/**
* @param string $appDir
*/
public function init($appDir)
{
$this->appDir = $appDir;
$this->initConfig();
// snip
}
public function run ($appDir)
{
$this->init($appDir);
$front = $this->initController();
$front->dispatch();
}
}
あなたのbootstrapは次のようになります:
require 'Application.php';
try {
Application::getInstance()->run(dirname(dirname(__FILE__)));
} catch (Exception $e) {
header("HTTP/1.x 500 Internal Server Error");
trigger_error('Application Error : '.$e->getMessage(), E_USER_ERROR);
}
構成にアクセスする場合は、以下を使用します。
$var = Application::getInstance()->getConfig()->somevar;
ほとんどのZFアプリでは、アプリケーションオブジェクトはグローバルスコープで宣言されます(public/index.php
で作成されたアプリのZFW_DISTRIBUTION/bin/zf.sh
を参照)。
ZFの方法とは異なりますが、$GLOBALS['application']
を使用してオブジェクトにアクセスできます。それはちょっとごまかしのように感じますが、あなたがパフォーマンスの後なら、これがおそらく最も速いオプションでしょう。
$manager = new My_Model_Manager($GLOBALS['application']->getOption('my'));
$this->getInvokeArg('bootstrap')->getOptions();
// or
$configDb = $this->getInvokeArg('bootstrap')->getOption('db');
ブーストラップの初めにrequire_once()を必要とする場所に短い手を定義しました:
function reg($name, $value=null) {
(null===$value) || Zend_Registry::set($name, $value);
return Zend_Registry::get($name);
}
bootstrapには、
protected function _initFinal()
{
reg('::app', $this->getApplication());
}
それから私はアプリケーションインスタンスをどこにでも使うことができます:
$app = reg('::app');
設定オプションにアクセスする本当に簡単な方法は、グローバルに定義された$ application変数に直接アクセスすることです。
class My_UserController extends Zend_Controller_Action {
public function indexAction() {
global $application;
$options = $application->getOptions();
}
}