Skip to content

k1LoW/Exception

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

58 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Exception plugin for CakePHP

Exception class template.

Install

composer.json:

{
    "require": {
        "k1low/exception": "*"
    }
}

see: https://packagist.org/packages/k1low/exception

Usage: Exception class template

Set CakePlugin::load('Exception', array('bootstrap' => true));.

Usage: ExceptionNotifier

Set EmailConfig::error option in app/Config/email.php.

ExceptionNotifierErrorHandler

Set CakePlugin::load('Exception', array('bootstrap' => 'notifier'));.

ExceptionNotifierComponent [Deprecated]

Add the following code in AppController.php

<?php
    class AppController extends Controller {
        var $components = array('Exception.ExceptionNotifier');

        public function beforeFilter() {
            $this->ExceptionNotifier->observe();
        }
    }

Configuration

  • ExceptionNotifier.force
  • ExceptionNotifier.prefix
  • ExceptionNotifier.html
  • ExceptionNotifier.clientIpSafe
  • ExceptionNotifier.allowedException
  • ExceptionNotifier.deniedException
  • ExceptionNotifier.deniedStatusCode
  • ExceptionNotifier.senders

Authors

License

the MIT License

ExceptionNotifierComponent original lisence

Copyright © 2009-2010 milk1000cc, released under the MIT license.

About

Exception plugin for CakePHP

Resources

Stars

Watchers

Forks

Sponsor this project

 

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •  

Languages