| 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/lib/Varien/Pear/ |
Upload File : |
<?php
class Varien_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 .= "\r\n";
}
$this->_log[] = $msg;
if ('stdout'===$this->_logStream) {
if ($msg==='.') {
echo ' ';
}
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."\r\n";
} elseif (is_array($data) && !empty($data['message']) && is_string($data['message'])) {
echo $data['message']."\r\n";
} elseif (is_array($data) && !empty($data['data']) && is_string($data['data'])) {
echo $data['data']."\r\n";
} 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;
}
}