<?php /* Plugin Name: WordPress Sentry Client Plugin URI: http://www.hzdg.com Description: Sends PHP errors to Django Sentry Author: Ryan Bagwell Version: 1 Author URI: http://www.ryanbagwell.com */ require_once( dirname(__FILE__).'/class.wp-raven-client.php' ); class WPSentry extends WP_Raven_Client { function WPSentry() { parent::__construct(); } } add_action('plugins_loaded', create_function(null, '$wps = new WPSentry(); ') );