| Server IP : 213.186.33.4 / Your IP : 216.73.216.193 Web Server : Apache System : Linux webm006.cluster103.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 User : awebpaca ( 35430) PHP Version : 8.5.0 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/awebpaca/boutiques/downloader/Maged/Pear/ |
Upload File : |
<?php
/**
* Magento
*
* NOTICE OF LICENSE
*
* This source file is subject to the Open Software License (OSL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/osl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@magentocommerce.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade Magento to newer
* versions in the future. If you wish to customize Magento for your
* needs please refer to http://www.magentocommerce.com for more information.
*
* @category Varien
* @package Varien_Object
* @copyright Copyright (c) 2008 Irubin Consulting Inc. DBA Varien (http://www.varien.com)
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
*/
class Maged_Pear_Frontend extends PEAR_Frontend
{
protected $_logStream = null;
protected $_outStream = null;
protected $_log = array();
protected $_out = array();
/**
* Enter description here...
*
* @param string|resource $stream 'stdout' or open php stream
*/
public function setLogStream($stream)
{
$this->_logStream = $stream;
return $this;
}
public function getLogStream()
{
return $this->_logStream;
}
public function log($msg, $append_crlf = true)
{
if (is_null($msg) || false===$msg or ''===$msg) {
return;
}
if ($append_crlf) {
$msg .= "<br/>";
}
if ($msg==='.') {
$msg .= ' ';
}
$this->_log[] = $msg;
if ('stdout'===$this->_logStream) {
echo $msg;
}
elseif (is_resource($this->_logStream)) {
fwrite($this->_logStream, $msg);
}
}
public function outputData($data, $command = '_default')
{
$this->_out[] = array('output'=>$data, 'command'=>$command);
if ('stdout'===$this->_logStream) {
if (is_string($data)) {
echo $data."<br/>";
} elseif (is_array($data)) {
if (!empty($data['message']) && is_string($data['message'])) {
echo $data['message']."<br/>";
} elseif (!empty($data['data'])) {
if (is_string($data['data'])) {
echo $data['data']."<br/>";
} elseif (!empty($data['headline']) && is_array($data['data'])) {
echo $data['headline']."<br/>";
foreach ($data['data'] as $msg) {
echo $msg[0]."<br/>";
}
} else {
print_r($data);
}
} else {
print_r($data);
}
} else {
print_r($data);
}
}
}
public function userConfirm()
{
}
public function clear()
{
$this->_log = array();
$this->_out = array();
}
public function getLog()
{
return $this->_log;
}
public function getLogText()
{
$text = '';
foreach ($this->getLog() as $log) {
$text .= $log;
}
return $text;
}
public function getOutput()
{
return $this->_out;
}
public function processOutputData($data)
{
if (isset($data['headline'])) {
$rows = array();
foreach ($data['data'] as $i=>$fields) {
foreach ($fields as $f=>$v) {
$rows[$i][$data['headline'][$f]] = $v;
}
}
return $rows;
} else {
$data = $data['data'];
while (is_array($data)) {
$data = $data[0];
}
return $data;
}
}
}