Zend フレームワークでプラグインを作成し、このプラグインを bootstrap.php に登録しました。しかし、私のページにはエラーが表示されています
クラス 'Application_Plugin_CheckAuthentication' が bootstrap.php ファイルに見つかりません。
私のプラグイン登録コードは以下の通りです:
function _initViewHelpers() {
$frontController = Zend_Controller_Front::getInstance();
$frontController->registerPlugin(new Application_Plugin_CheckAuthentication());
}
これはプラグインフォルダーを取得していないと思います。誰でも助けることができますか?
ありがとう。