0byt3m1n1
Path:
/
data
/
applications
/
aps
/
magento
/
1.1.3-2
/
standard
/
htdocs
/
downloader
/
Maged
/
Pear
/
[
Home
]
File: Frontend.php
<?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. * * @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; } } }