├── .gitignore ├── LICENSE ├── README.markdown ├── config ├── config.php ├── fpErrorNotifierPluginConfiguration.class.php ├── include.php └── notify.yml ├── doc ├── development_guide ├── sfErrorNotify2Plugin.jpg └── sfErrorNotify2Plugin.pxd ├── lib ├── decorator │ ├── fpBaseErrorNotifierDecorator.php │ ├── fpErrorNotifierDecoratorHtml.php │ └── fpErrorNotifierDecoratorText.php ├── driver │ ├── fpBaseErrorNotifierDriver.php │ ├── fpErrorNotifierDriverFile.php │ ├── fpErrorNotifierDriverNull.php │ └── mail │ │ ├── fpBaseErrorNotifierDriverMail.php │ │ ├── fpErrorNotifierDriverMailNative.php │ │ └── fpErrorNotifierDriverMailSymfony.php ├── fpErrorNotifier.php ├── handler │ ├── fpErrorNotifierHandler.php │ └── fpErrorNotifierHandlerIgnore.php ├── message │ ├── fpBaseErrorNotifierMessage.php │ ├── fpErrorNotifierMessage.php │ └── fpErrorNotifierMessageHelper.php └── util │ ├── fpErrorNotifierErrorCode.php │ └── fpErrorNotifierNullObject.php ├── package.xml └── test └── phpunit ├── decorator ├── fpBaseErrorNotifierDecoratorTestCase.php ├── fpErrorNotifierDecoratorHtmlTestCase.php └── fpErrorNotifierDecoratorTextTestCase.php ├── fpErrorNotifierRootTestSuite.php ├── fpErrorNotifierTestCase.php ├── handler ├── fpErrorNotifierHandlerIgnoreTestCase.php └── fpErrorNotifierHandlerTestCase.php ├── message ├── fpErrorNotifierMessageHelperTestCase.php └── fpErrorNotifierMessageTestCase.php └── util └── fpErrorNotifierErrorCodeTestCase.php /.gitignore: -------------------------------------------------------------------------------- 1 | .project 2 | .settings 3 | .buildpath 4 | .svn 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makasim/fpErrorNotifierPlugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makasim/fpErrorNotifierPlugin/HEAD/README.markdown -------------------------------------------------------------------------------- /config/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makasim/fpErrorNotifierPlugin/HEAD/config/config.php -------------------------------------------------------------------------------- /config/fpErrorNotifierPluginConfiguration.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makasim/fpErrorNotifierPlugin/HEAD/config/fpErrorNotifierPluginConfiguration.class.php -------------------------------------------------------------------------------- /config/include.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makasim/fpErrorNotifierPlugin/HEAD/config/include.php -------------------------------------------------------------------------------- /config/notify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makasim/fpErrorNotifierPlugin/HEAD/config/notify.yml -------------------------------------------------------------------------------- /doc/development_guide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makasim/fpErrorNotifierPlugin/HEAD/doc/development_guide -------------------------------------------------------------------------------- /doc/sfErrorNotify2Plugin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makasim/fpErrorNotifierPlugin/HEAD/doc/sfErrorNotify2Plugin.jpg -------------------------------------------------------------------------------- /doc/sfErrorNotify2Plugin.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makasim/fpErrorNotifierPlugin/HEAD/doc/sfErrorNotify2Plugin.pxd -------------------------------------------------------------------------------- /lib/decorator/fpBaseErrorNotifierDecorator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makasim/fpErrorNotifierPlugin/HEAD/lib/decorator/fpBaseErrorNotifierDecorator.php -------------------------------------------------------------------------------- /lib/decorator/fpErrorNotifierDecoratorHtml.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makasim/fpErrorNotifierPlugin/HEAD/lib/decorator/fpErrorNotifierDecoratorHtml.php -------------------------------------------------------------------------------- /lib/decorator/fpErrorNotifierDecoratorText.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makasim/fpErrorNotifierPlugin/HEAD/lib/decorator/fpErrorNotifierDecoratorText.php -------------------------------------------------------------------------------- /lib/driver/fpBaseErrorNotifierDriver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makasim/fpErrorNotifierPlugin/HEAD/lib/driver/fpBaseErrorNotifierDriver.php -------------------------------------------------------------------------------- /lib/driver/fpErrorNotifierDriverFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makasim/fpErrorNotifierPlugin/HEAD/lib/driver/fpErrorNotifierDriverFile.php -------------------------------------------------------------------------------- /lib/driver/fpErrorNotifierDriverNull.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makasim/fpErrorNotifierPlugin/HEAD/lib/driver/fpErrorNotifierDriverNull.php -------------------------------------------------------------------------------- /lib/driver/mail/fpBaseErrorNotifierDriverMail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makasim/fpErrorNotifierPlugin/HEAD/lib/driver/mail/fpBaseErrorNotifierDriverMail.php -------------------------------------------------------------------------------- /lib/driver/mail/fpErrorNotifierDriverMailNative.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makasim/fpErrorNotifierPlugin/HEAD/lib/driver/mail/fpErrorNotifierDriverMailNative.php -------------------------------------------------------------------------------- /lib/driver/mail/fpErrorNotifierDriverMailSymfony.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makasim/fpErrorNotifierPlugin/HEAD/lib/driver/mail/fpErrorNotifierDriverMailSymfony.php -------------------------------------------------------------------------------- /lib/fpErrorNotifier.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makasim/fpErrorNotifierPlugin/HEAD/lib/fpErrorNotifier.php -------------------------------------------------------------------------------- /lib/handler/fpErrorNotifierHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makasim/fpErrorNotifierPlugin/HEAD/lib/handler/fpErrorNotifierHandler.php -------------------------------------------------------------------------------- /lib/handler/fpErrorNotifierHandlerIgnore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makasim/fpErrorNotifierPlugin/HEAD/lib/handler/fpErrorNotifierHandlerIgnore.php -------------------------------------------------------------------------------- /lib/message/fpBaseErrorNotifierMessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makasim/fpErrorNotifierPlugin/HEAD/lib/message/fpBaseErrorNotifierMessage.php -------------------------------------------------------------------------------- /lib/message/fpErrorNotifierMessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makasim/fpErrorNotifierPlugin/HEAD/lib/message/fpErrorNotifierMessage.php -------------------------------------------------------------------------------- /lib/message/fpErrorNotifierMessageHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makasim/fpErrorNotifierPlugin/HEAD/lib/message/fpErrorNotifierMessageHelper.php -------------------------------------------------------------------------------- /lib/util/fpErrorNotifierErrorCode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makasim/fpErrorNotifierPlugin/HEAD/lib/util/fpErrorNotifierErrorCode.php -------------------------------------------------------------------------------- /lib/util/fpErrorNotifierNullObject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makasim/fpErrorNotifierPlugin/HEAD/lib/util/fpErrorNotifierNullObject.php -------------------------------------------------------------------------------- /package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makasim/fpErrorNotifierPlugin/HEAD/package.xml -------------------------------------------------------------------------------- /test/phpunit/decorator/fpBaseErrorNotifierDecoratorTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makasim/fpErrorNotifierPlugin/HEAD/test/phpunit/decorator/fpBaseErrorNotifierDecoratorTestCase.php -------------------------------------------------------------------------------- /test/phpunit/decorator/fpErrorNotifierDecoratorHtmlTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makasim/fpErrorNotifierPlugin/HEAD/test/phpunit/decorator/fpErrorNotifierDecoratorHtmlTestCase.php -------------------------------------------------------------------------------- /test/phpunit/decorator/fpErrorNotifierDecoratorTextTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makasim/fpErrorNotifierPlugin/HEAD/test/phpunit/decorator/fpErrorNotifierDecoratorTextTestCase.php -------------------------------------------------------------------------------- /test/phpunit/fpErrorNotifierRootTestSuite.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makasim/fpErrorNotifierPlugin/HEAD/test/phpunit/fpErrorNotifierRootTestSuite.php -------------------------------------------------------------------------------- /test/phpunit/fpErrorNotifierTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makasim/fpErrorNotifierPlugin/HEAD/test/phpunit/fpErrorNotifierTestCase.php -------------------------------------------------------------------------------- /test/phpunit/handler/fpErrorNotifierHandlerIgnoreTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makasim/fpErrorNotifierPlugin/HEAD/test/phpunit/handler/fpErrorNotifierHandlerIgnoreTestCase.php -------------------------------------------------------------------------------- /test/phpunit/handler/fpErrorNotifierHandlerTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makasim/fpErrorNotifierPlugin/HEAD/test/phpunit/handler/fpErrorNotifierHandlerTestCase.php -------------------------------------------------------------------------------- /test/phpunit/message/fpErrorNotifierMessageHelperTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makasim/fpErrorNotifierPlugin/HEAD/test/phpunit/message/fpErrorNotifierMessageHelperTestCase.php -------------------------------------------------------------------------------- /test/phpunit/message/fpErrorNotifierMessageTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makasim/fpErrorNotifierPlugin/HEAD/test/phpunit/message/fpErrorNotifierMessageTestCase.php -------------------------------------------------------------------------------- /test/phpunit/util/fpErrorNotifierErrorCodeTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makasim/fpErrorNotifierPlugin/HEAD/test/phpunit/util/fpErrorNotifierErrorCodeTestCase.php --------------------------------------------------------------------------------