コンポーネントが存在するかどうかを最初に確認してコンポーネントを追加する方法。これをcakephp 2.2.3で使用しました
public function __construct( $request = null, $response = null ) {
parent::__construct( $request, $response );
$this->_setupApplicationComponents();
}
protected function _setupApplicationComponents() {
if ( App::import( 'Component', 'Search.Prg' ) ) {
$this->components[] = 'Search.Prg';
}
}
Cakephp 2.3.4 では動作しません。
誰でも助けることができます。
ありがとう