0byt3m1n1
Path:
/
data
/
applications
/
aps.bak
/
magento
/
1.5.1.0-0
/
standard
/
htdocs
/
downloader
/
Maged
/
Connect
/
[
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. * * 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 Mage * @package Mage_Connect * @copyright Copyright (c) 2010 Magento Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ /** * Class frontend * * @category Mage * @package Mage_Connect * @copyright Copyright (c) 2009 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_Connect_Frontend extends Mage_Connect_Frontend { /** * Log stream or not * * @var string */ protected $_logStream = null; /** * Output cache * * @var array */ protected $_out = array(); /** * Set log stream * * @param string|resource $stream 'stdout' or open php stream */ public function setLogStream($stream) { $this->_logStream = $stream; return $this; } /** * Retrieve log stream * * @return string */ public function getLogStream() { return $this->_logStream; } /** * Echo data from executed command */ public function output($data) { $this->_out = $data; if ('stdout'===$this->_logStream) { if (is_string($data)) { echo $data."<br/>".str_repeat(" ", 256); } elseif (is_array($data)) { $data = array_pop($data); if (!empty($data['message']) && is_string($data['message'])) { echo $data['message']."<br/>".str_repeat(" ", 256); } elseif (!empty($data['data'])) { if (is_string($data['data'])) { echo $data['data']."<br/>".str_repeat(" ", 256); } else { if (isset($data['title'])) { echo $data['title']."<br/>".str_repeat(" ", 256); } if (is_array($data['data'])) { foreach ($data['data'] as $row) { foreach ($row as $msg) { echo " ".$msg; } echo "<br/>".str_repeat(" ", 256); } } else { echo " ".$data['data']; } } } } else { print_r($data); } } } /** * Method for ask client about rewrite all files. * * @param $string */ public function confirm($string) { $formId = $_POST['form_id']; echo <<<SCRIPT <script type="text/javascript"> if (confirm("{$string}")) { parent.document.getElementById('ignore_local_modification').value=1; parent.onSuccess(); if (parent && parent.disableInputs) { parent.disableInputs(false); } window.onload = function () { parent.document.getElementById('{$formId}').submit(); parent.document.getElementById('ignore_local_modification').value=''; } } </script> SCRIPT; } /** * Retrieve output cache * * @return array */ public function getOutput() { return $this->_out; } }