0byt3m1n1-V2
Path:
/
home
/
a
/
c
/
a
/
academiac
/
www
/
[
Home
]
File: update_preview.php.tar
academiac/www/administrator/components/com_virtuemart/views/updatesmigration/tmpl/update_preview.php0000604 00000011065 15137652747 0031501 0 ustar 00 home <?php /** * * Description * * @package VirtueMart * @subpackage UpdatesMigration * @author Max Milbers * @link http://www.virtuemart.net * @copyright Copyright (c) 2004 - 2010 VirtueMart Team. All rights reserved. * @license http://www.gnu.org/copyleft/gpl.html GNU/GPL, see LICENSE.php * VirtueMart is free software. This version may have been modified pursuant * to the GNU General Public License, and as distributed it includes or * is derivative of works licensed under the GNU General Public License or * other free or open source software licenses. * @version $Id: update_preview.php 4562 2011-10-26 21:28:08Z electrocity $ */ // Check to ensure this file is included in Joomla! defined('_JEXEC') or die('Restricted access'); AdminUIHelper::startAdminArea($this); ?> <form action="index.php" method="post" name="adminForm" id="adminForm"> <a name="warning"></a> <div class="shop_warning"> <span style="font-style: italic;"><?php echo JText::_('COM_VIRTUEMART_UPDATE_WARNING_TITLE') ?></span><br /> <?php echo JText::_('COM_VIRTUEMART_UPDATE_WARNING_TEXT'); ?> </div> <div class="shop_info"> <span style="font-style: italic;"><?php echo JText::_('COM_VIRTUEMART_UPDATE_PATCH_DETAILS') ?></span><br /> <ul> <li><?php echo JText::_('COM_VIRTUEMART_UPDATE_PATCH_DESCRIPTION') ?>: <?php echo vmGet($packageContents,'description',null, JREQUEST_ALLOWHTML ) ?></li> <li><?php echo JText::_('COM_VIRTUEMART_UPDATE_PATCH_DATE') ?>: <?php echo $packageContents['releasedate'] ?></li> </ul> </div> <table class="adminlist" cellspacing="0" cellpadding="0"> <thead> <tr> <th class="title"><?php echo JText::_('COM_VIRTUEMART_UPDATE_PATCH_FILESTOUPDATE') ?></th> <th class="title"><?php echo JText::_('COM_VIRTUEMART_UPDATE_PATCH_STATUS') ?></th> </tr> </thead> <tbody> <?php $valid = true; foreach( $packageContents['fileArr'] as $fileentry ) { $file = $fileentry['filename']; if( file_exists($mosConfig_absolute_path.'/'.$file)) { $is_writable = is_writable($mosConfig_absolute_path.'/'.$file ); if( !$is_writable ) { $is_writable = is_dir($mosConfig_absolute_path.'/'.$file) ? @chmod($mosConfig_absolute_path.'/'.$file, 0755):chmod($mosConfig_absolute_path.'/'.$file,0644); } } else { if( $fileentry['copy_policy'] == 'only_if_exists') { $is_writable = true; continue; } $check_dir = $mosConfig_absolute_path.'/'.dirname($file); $is_writable = is_writable($check_dir); if( !$is_writable ) { while( !file_exists($check_dir)) { $check_dir = dirname( $check_dir ); $is_writable = is_writable($check_dir ) || @chmod($checkdir, 0755); } } } if( !$is_writable ) { $valid = false; } echo '<tr><td>'.$file.'</td>'; $class = $is_writable ? 'writable' : 'unwritable'; $msg = $is_writable ? JText::_('COM_VIRTUEMART_UPDATE_PATCH_WRITABLE') : JText::_('COM_VIRTUEMART_UPDATE_PATCH_UNWRITABLE'); echo '<td class="'.$class.'">'.$msg."</td></tr>\n"; } ?> </tbody> </table> <?php if( !empty($packageContents['queryArr'])) { echo '<table class="adminlist" cellspacing="0" cellpadding="0"><thead><tr><th class="title">' . JText::_('COM_VIRTUEMART_UPDATE_PATCH_QUERYTOEXEC') . ':</th></tr></thead>'; echo '<tbody>'; foreach($packageContents['queryArr'] as $query) { echo '<tr><td><pre>'.$query. "</pre></td></tr>"; } echo '</tbody></table>'; } if( $valid ) { echo '<div align="center"> <input type="checkbox" name="confirm_update" id="confirm_update"> <label for="confirm_update">' . JText::_('COM_VIRTUEMART_UPDATE_PATCH_CONFIRM_TEXT') . '</label> <br /><br /> <input class="vmicon vmicon32 vmicon-32-apply" type="submit" onclick="return checkConfirm()" value="' . JText::_('COM_VIRTUEMART_UPDATE_PATCH_APPLY') . '" name="submitbutton" /> <input type="button" onclick="document.adminForm.page.value=\'store.index\';document.adminForm.func.value=\'removePatchPackage\';submitform(\'save\');" class="vmicon vmicon32 vmicon-32-cancel" value="'.JText::_('COM_VIRTUEMART_CANCEL').'" /> </div>'; } else { echo '<div class="shop_error">' . JText::_('COM_VIRTUEMART_UPDATE_PATCH_ERR_UNWRITABLE').'</div>'; } $formObj->finishForm('applypatchpackage', 'admin.update_result'); ?> <script type="text/javascript"> function checkConfirm() { if( document.adminForm.confirm_update.checked ) { return true; } alert( "<?php echo addslashes( JText::_('COM_VIRTUEMART_UPDATE_PATCH_PLEASEMARK_JS') ) ?>" ); return false; } </script> </form> <?php AdminUIHelper::endAdminArea(); ?>
©
2018.