Spade

Mini Shell

Directory:~$ /home/lmsyaran/public_html/joomla4/
Upload File

[Home] [System Details] [Kill Me]
Current File:~$ /home/lmsyaran/public_html/joomla4/dump.php.tar

home/lmsyaran/public_html/administrator/components/com_dump/dump.php000064400000001643151156100530022153
0ustar00<?php
/**
 * J!Dump
 * @version      $Id$
 * @package      jdump
 * @copyright    Copyright (C) 2006-2011 Mathias Verraes. All rights
reserved.
 * @license      GNU/GPL
 * @link         https://github.com/mathiasverraes/jdump
 */
defined( '_JEXEC' ) or die( 'Restricted access' );

// use JPATH_COMPONENT_ADMINISTRATOR so we can use this in both site and
administrator
// Defines
require_once(JPATH_COMPONENT_ADMINISTRATOR . '/defines.php');
// Require the base controller
require_once(JPATH_COMPONENT_ADMINISTRATOR . '/controller.php');

// Require specific controller if requested
if ($controller = JRequest::getCmd('controller')) 
{
	require_once (JPATH_COMPONENT_ADMINISTRATOR . '/controllers/' .
$controller . '.php');
}

// Create the controller
$classname  = 'DumpController'.$controller;
$controller = new $classname();

// Perform the Request task
$controller->execute(JRequest::getCmd('task'));

$controller->redirect();
home/lmsyaran/public_html/j3/plugins/system/dump/dump.php000064400000007304151163265070017602
0ustar00<?php
/**
 * J!Dump
 * @version      $Id$
 * @package      jdump
 * @copyright    Copyright (C) 2007 Mathias Verraes. All rights reserved.
 * @license      GNU/GPL
 * @link         https://github.com/mathiasverraes/jdump
 */
defined( '_JEXEC' ) or die( 'Restricted access' );

jimport( 'joomla.event.helper' );

if
(file_exists(JPATH_ADMINISTRATOR.'/components/com_dump/helper.php'))

{
	require_once(JPATH_ADMINISTRATOR.'/components/com_dump/helper.php');
	require_once(JPATH_ADMINISTRATOR.'/components/com_dump/defines.php');
} 
else 
{
	JError::raiseNotice(20, 'The J!Dump Plugin needs the J!Dump Component
to function.');
}

$version = new JVersion();
if (!$version->isCompatible('2.5.5')) 
{
	JError::raiseNotice(20, 'J!Dump requires Joomla 2.5.5 or later. For
older Joomla versions, please use
https://github.com/downloads/mathiasverraes/jdump/unzip_first_jdump_v2012-10-08.zip');
}

class plgSystemDump extends JPlugin 
{
	function __construct(& $subject, $params) 
	{
		parent::__construct($subject, $params);
	}

	function onAfterRender() 
	{
	   $mainframe = JFactory::getApplication(); $option =
JRequest::getCmd('option');

		if ($option == 'com_dump')
		{
			return;
		}

		// settings from config.xml
		$dumpConfig = JComponentHelper::getParams( 'com_dump' );
		$autopopup  = $dumpConfig->get( 'autopopup', 1 );

		$userstate = $mainframe->getUserState( 'dump.nodes', array()
);
		$cnt_dumps  = count($userstate);

		if( $autopopup && $cnt_dumps) 
		{
			DumpHelper::showPopup();
		}
	}
}


/**
 * Add a variable to the list of variables that will be shown in the debug
window
 * @param mixed $var The variable you want to dump
 * @param mixed $name The name of the variable you want to dump
 */
function dump($var = null, $name = '(unknown name)', $type =
null, $level = 0)
{
	$mainframe = JFactory::getApplication(); 
	$option    = JRequest::getCmd('option');

	require_once
JPATH_ADMINISTRATOR.'/components/com_dump/node.php';

		$source = '';
		if (function_exists('debug_backtrace'))
		{
			$trace = debug_backtrace();
			$source = DumpHelper::getSourceFunction($trace) 
					. DumpHelper::getSourcePath($trace);
		}

	// create a new node array
	$node           = DumpNode::getNode($var, $name, $type, $level, $source);
	//get the current userstate
	$userstate      = $mainframe->getUserState('dump.nodes');
	// append the node to the array
	$userstate[]    = $node;
	// set the userstate to the new array
	$mainframe->setUserState('dump.nodes', $userstate);
}

/**
 * Shortcut to dump the parameters of a template
 * @param object $var The "$this" object in the template
 */
function dumpTemplate($var, $name = false) 
{
	$name = $name ? $name :  $var->template;
	dump($var->params->toObject(), "dumpTemplate params :
".$name);
}

/**
 * Shortcut to dump a message
 * @param string $msg The message
 */
function dumpMessage($msg = '(Empty message)') 
{
	dump($msg, null, 'message', 0);
}

/**
 * Shortcut to dump system information
 */
function dumpSysinfo() 
{
	require_once
JPATH_ADMINISTRATOR.'/components/com_dump/sysinfo.php';
	$sysinfo = new DumpSysinfo();
	dump( $sysinfo->data, 'System Information');
}

/**
 * Shortcut to dump the backtrace
 */
function dumpTrace()
{
	$trace = debug_backtrace();

	$arr = dumpTraceBuild($trace);

	dump($arr, 'Backtrace', 'backtrace');
}

function dumpTraceBuild($trace)
{
	$ret = array();

	$ret['file']     = $trace[0]['file'];
	$ret['line']     = $trace[0]['line'];
	
	if (isset($trace[0]['class']) &&
isset($trace[0]['type']))
		$ret['function'] =
$trace[0]['class'].$trace[0]['type'].$trace[0]['function'];
	else
		$ret['function'] = $trace[0]['function'];
		
	$ret['args']     = $trace[0]['args'];

	array_shift($trace);
	
	if (count($trace) > 0)
		$ret['backtrace'] = dumpTraceBuild($trace);

	return $ret;
}
home/lmsyaran/public_html/j3/administrator/components/com_dump/dump.php000064400000001643151164213220022467
0ustar00<?php
/**
 * J!Dump
 * @version      $Id$
 * @package      jdump
 * @copyright    Copyright (C) 2006-2011 Mathias Verraes. All rights
reserved.
 * @license      GNU/GPL
 * @link         https://github.com/mathiasverraes/jdump
 */
defined( '_JEXEC' ) or die( 'Restricted access' );

// use JPATH_COMPONENT_ADMINISTRATOR so we can use this in both site and
administrator
// Defines
require_once(JPATH_COMPONENT_ADMINISTRATOR . '/defines.php');
// Require the base controller
require_once(JPATH_COMPONENT_ADMINISTRATOR . '/controller.php');

// Require specific controller if requested
if ($controller = JRequest::getCmd('controller')) 
{
	require_once (JPATH_COMPONENT_ADMINISTRATOR . '/controllers/' .
$controller . '.php');
}

// Create the controller
$classname  = 'DumpController'.$controller;
$controller = new $classname();

// Perform the Request task
$controller->execute(JRequest::getCmd('task'));

$controller->redirect();