如何添加组件,首先检查组件是否存在。我在 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。
任何人都可以提供帮助。
谢谢