/lib/Varien/Pear/Frontend.php
https://gitlab.com/LisovyiEvhenii/ismextensions · PHP · 127 lines · 75 code · 16 blank · 36 comment · 12 complexity · 8bbd4fceaf73c5cc1992e7bd5581e04f MD5 · raw 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@magento.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.magento.com for more information.
- *
- * @category Varien
- * @package Varien_Pear
- * @copyright Copyright (c) 2006-2016 X.commerce, Inc. and affiliates (http://www.magento.com)
- * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
- */
- /**
- * Pear frontend routines
- * *
- * @category Varien
- * @package Varien_Pear
- * @author Magento Core Team <core@magentocommerce.com>
- */
- 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;
- }
- }