2009-12-05 07:13:40 +00:00
|
|
|
<?php
|
|
|
|
/*
|
2011-04-08 17:46:41 +01:00
|
|
|
* StatusNet Plugin: 0.9
|
|
|
|
* Plugin Name: FirePHP
|
|
|
|
* Description: Sends StatusNet log output to FirePHP
|
|
|
|
* Version: 0.1
|
|
|
|
* Author: Craig Andrews <candrews@integralblue.com>
|
|
|
|
* Author URI: http://candrews.integralblue.com/
|
2009-12-05 07:13:40 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* StatusNet - the distributed open-source microblogging tool
|
|
|
|
* Copyright (C) 2009, StatusNet, Inc.
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2010-05-27 23:26:47 +01:00
|
|
|
* @category Plugin
|
2009-12-05 07:13:40 +00:00
|
|
|
* @package MinifyPlugin
|
|
|
|
* @maintainer Craig Andrews <candrews@integralblue.com>
|
2010-05-27 23:26:47 +01:00
|
|
|
* @author Craig Andrews <candrews@integralblue.com>
|
|
|
|
* @copyright 2009 Free Software Foundation, Inc http://www.fsf.org
|
|
|
|
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
|
|
|
|
* @link http://status.net/
|
2009-12-05 07:13:40 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); }
|
|
|
|
|
|
|
|
// We bundle the FirePHP library...
|
|
|
|
set_include_path(get_include_path() . PATH_SEPARATOR . dirname(__FILE__) . '/extlib/FirePHP/lib');
|
|
|
|
|
|
|
|
class FirePHPPlugin extends Plugin
|
|
|
|
{
|
|
|
|
private $firephp;
|
|
|
|
|
|
|
|
function onInitializePlugin()
|
|
|
|
{
|
|
|
|
//Output buffering has to be enabled so FirePHP can send the HTTP headers it needs
|
|
|
|
ob_start();
|
|
|
|
require_once('FirePHPCore/FirePHP.class.php');
|
|
|
|
$this->firephp = FirePHP::getInstance(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
function onStartLog(&$priority, &$msg, &$filename)
|
|
|
|
{
|
|
|
|
static $firephp_priorities = array(FirePHP::ERROR, FirePHP::ERROR, FirePHP::ERROR, FirePHP::ERROR,
|
|
|
|
FirePHP::WARN, FirePHP::LOG, FirePHP::LOG, FirePHP::INFO);
|
2010-03-09 02:20:48 +00:00
|
|
|
$fp_priority = $firephp_priorities[$priority];
|
|
|
|
$this->firephp->fb($msg, $fp_priority);
|
2009-12-05 07:13:40 +00:00
|
|
|
}
|
2010-01-09 23:58:40 +00:00
|
|
|
|
2015-06-06 21:04:01 +01:00
|
|
|
function onPluginVersion(array &$versions)
|
2010-01-09 23:58:40 +00:00
|
|
|
{
|
|
|
|
$versions[] = array('name' => 'FirePHP',
|
2013-11-01 12:51:41 +00:00
|
|
|
'version' => GNUSOCIAL_VERSION,
|
2010-01-09 23:58:40 +00:00
|
|
|
'author' => 'Craig Andrews',
|
|
|
|
'homepage' => 'http://status.net/wiki/Plugin:FirePHP',
|
|
|
|
'rawdescription' =>
|
2011-04-08 17:46:41 +01:00
|
|
|
// TRANS: Plugin description.
|
2010-01-09 23:58:40 +00:00
|
|
|
_m('The FirePHP plugin writes StatusNet\'s log output to FirePHP.'));
|
|
|
|
return true;
|
|
|
|
}
|
2009-12-05 07:13:40 +00:00
|
|
|
}
|