CakePHP全局覆盖类?

时间:2016-05-19 14:19:56

标签: cakephp cakephp-2.0

我重新配置了cakeEmail类,通过重写send方法登录到特定类型。我想全局使用这个覆盖。我当前的单个文件设置使用/Lib/CustomCakeEmail.php和

App:uses('CustomCakeEmail', 'Lib');

CakePhp: Cake Email AfterSend event建议使用AppController全局覆盖的方法,但我甚至无法触发调试器

App::uses('CustomCakeEmail', 'Lib');
class AppController extends Controller {
    public function getEmailInstance($config = null) {
        CakeLog::write('debug', 'appcontroller triggered');
        return new CustomCakeEmail($config);
    }

实现此全局覆盖的正确方法是什么?

CakePHP版本2.8.4

0 个答案:

没有答案