Вход Регистрация
Файл: concrete5.7.5.6/concrete/single_pages/dashboard/system/backup/update.php
Строк: 297
<?php
defined
('C5_EXECUTE') or die("Access Denied.");
$h Loader::helper('concrete/dashboard');
$ih Loader::helper('concrete/ui');
$form Loader::helper('form');
$view View::getInstance();
if (
$canUpgrade) { ?>

    <div class="ccm-dashboard-header-buttons">
        <a href="<?php echo $view->action('check_for_updates'?>" class="btn btn-primary">
            <?php echo t('Check For Updates'?>
        </a>
    </div>


   <?php if (is_object($update)) { ?>

        <div class="ccm-dashboard-update-details-wrapper">

            <div class="ccm-dashboard-update-details">
                <div class="ccm-dashboard-update-thumbnail"><img src="<?php echo ASSETS_URL_IMAGES?>/logo.png" /></div>
                <h2><?php echo t('Version %s'$update->getVersion())?></h2>
                <div><i class="fa fa-cog"></i> <span class="ccm-dashboard-update-details-testing-text"><?php echo t('Testing System...')?></span></div>
            </div>

            <div class="ccm-dashboard-update-nav">
                <form method="post" action="<?php echo $view->action('do_update')?>">
                    <?php echo $token->output('do_update')?>
                    <input type="hidden" name="version" value="<?php echo $update->getVersion()?>" />
                    <div class="ccm-dashboard-update-apply">
                        <button class="btn btn-primary" disabled="disabled" type="submit" name="update" value="1"><?php echo t('Checking...')?></button>
                    </div>
                </form>
            </div>
        </div>

        <div class="ccm-dashboard-update-detail-columns">
            <div class="row">
                <div class="col-md-4">
                    <ul class="list-group">
                        <li class="list-group-item"><span data-href="#notes" class="text-muted"><?php echo t('Release Notes')?></span></li>
                        <li class="list-group-item"><span data-href="#addons" class="text-muted"><?php echo t('Add-On Compatibility')?></span></li>
                        <li class="list-group-item"><span data-href="#notices" class="text-muted"><?php echo t('Important Notices')?></span></li>
                    </ul>
                </div>
                <div class="col-md-7 col-md-offset-1 ccm-dashboard-update-detail-main">
                    <a name="notes"></a>
                    <a href="#" target="_blank" data-url="info" style="display: none" class="btn btn-default pull-right btn-xs "><?php echo t('View Full Release Notes')?></a>
                    <h3><?php echo t('Release Notes')?></h3>
                    <div class="ccm-dashboard-update-detail-release-notes"><?php echo t('Retrieving Release Notes...')?></div>

                    <div class="spacer-row-5"></div>

                    <a name="addons"></a>
                    <a href="<?php echo URL::to('/dashboard/extend/update')?>" class="btn btn-default pull-right btn-xs "><?php echo t('Update Add-Ons')?></a>
                    <h3><?php echo t('Add-On Compatibility')?></h3>
                    <?php $list Package::getInstalledList();
                    
$ci Core::make('helper/concrete/urls');
                    if (
count($list) == 0) { ?>
                        <p><?php echo t('No add-ons installed.')?></p>

                    <?php }
                    foreach(
$list as $pkg) { ?>

                        <div class="media" data-addon="<?php echo $pkg->getPackageHandle()?>">
                            <div class="pull-left"><img style="width: 49px" src="<?php echo $ci->getPackageIconURL($pkg); ?>" class"media-object" /></div>
                            <div class="media-body">
                                <i class="fa fa-question-circle text-muted pull-right"></i>
                                <h4 class="media-heading"><?php echo $pkg->getPackageName(); ?> <span class="badge badge-info" style="margin-right: 10px"><?php echo tc('AddonVersion''v.%s'$pkg->getPackageVersion()); ?></span></h4>
                                <div class="ccm-dashboard-update-detail-status-text"></div>
                            </div>
                        </div>

                    <?php ?>

                    <div class="spacer-row-5"></div>

                    <h3><?php echo t('Upgrade Notices')?></h3>
                    <a name="notices"></a>
                    <div class="ccm-dashboard-update-detail-notices"><?php echo t('Loading...')?></div>
                </div>
            </div>
        </div>

        <script type="text/javascript">
        $(function() {

            handleError = function(r) {
                var $statusIcon = $('.ccm-dashboard-update-details i'),
                    $statusText = $('.ccm-dashboard-update-details-testing-text');
                $statusIcon.removeClass().addClass('fa fa-warning text-info');
                $statusText.removeClass().addClass('text-info').text(<?php echo json_encode(t('Unable to retrieve information about this update from concrete5.org. You may upgrade but do so with caution.'))?>);
                $('.ccm-dashboard-update-detail-release-notes').html(<?php echo json_encode(t('Unable to retrieve release notes from concrete5.org.'))?>);
                $('.ccm-dashboard-update-detail-notices').html(<?php echo json_encode(t('Unable to retrieve upgrade notices from concrete5.org.'))?>);
            }

            $.ajax({
                dataType: 'json',
                type: 'post',
                data: {
                    'version': '<?php echo $update->getVersion()?>'
                },
                complete: function() {
                    $('.ccm-dashboard-update-apply button').prop('disabled', false).text(<?php echo json_encode(t('Install Update'))?>);
                },
                url: '<?php echo $view->action('get_update_diagnostic_information')?>',
                error: function(r) {
                    handleError(r);
                },
                success: function(r) {
                    if (!r.requestedVersion) {
                        handleError(r);
                        return false;
                    }

                    $('a[data-url=info]').attr('href', r.releaseNotesUrl).show();
                    $('.ccm-dashboard-update-detail-release-notes').html(r.releaseNotes);
                    $('span[data-href]').each(function() {
                        var $tag = $('<a />', {'href': $(this).attr('data-href'), text: $(this).text()});
                        $(this).replaceWith($tag);
                    });
                    var $wrapper = $('.ccm-dashboard-update-detail-notices');
                    $wrapper.html('');
                    if (r.notices && r.notices.length) {
                        $.each(r.notices, function(i, notice) {
                            var className = '';
                            var textClassName = '';
                            switch(notice.safety) {
                                case 'info':
                                    className = 'fa fa-question-circle text-info';
                                    textClassName = '';
                                    break;
                                case 'warning':
                                    className = 'fa fa-warning text-warning';
                                    textClassName = 'text-warning';
                                    break;
                                case 'danger':
                                    className = 'fa fa-exclamation-circle text-danger';
                                    textClassName = 'text-danger';
                                    break;
                            }
                            $wrapper.append('<div class="media"><div class="pull-left"><i class="' + className + '"></i></div><div class="media-body ' + textClassName + '">' + notice.status + '</div></div>');
                        });
                    } else {
                        $wrapper.append(<?php echo json_encode(t('No upgrade notices found.'))?>);
                    }
                    var $statusIcon = $('.ccm-dashboard-update-details i'),
                        $statusText = $('.ccm-dashboard-update-details-testing-text');
                    if (r.status) {
                        var className = '';
                        var textClassName = '';
                        switch(r.status.safety) {
                            case 'success':
                                className = 'fa fa-check text-success';
                                textClassName = 'text-success';
                                break;
                            case 'warning':
                                className = 'fa fa-warning text-warning';
                                textClassName = 'text-warning';
                                break;
                            case 'danger':
                                className = 'fa fa-exclamation-circle text-danger';
                                textClassName = 'text-danger';
                                break;
                            default:
                                className = 'fa fa-arrow-circle-right';
                                textClassName = '';
                        }
                        $statusIcon.removeClass().addClass(className);
                        $statusText.removeClass().addClass(textClassName).text(r.status.status);
                    } else {
                        $statusIcon.removeClass().addClass('fa fa-arrow-circle-right');
                        $statusText.removeClass().addClass(textClassName).text(<?php echo json_encode(t('Update Ready'))?>);
                    }
                    $('[data-addon]').each(function() {
                        var $addon = $(this);
                        var item = false;
                        var textClassName = '';
                        var mpHandle = $addon.attr('data-addon');
                        if (r.marketplaceItemStatuses) {
                            var item = _.find(r.marketplaceItemStatuses, function(item) {
                                return item.mpHandle == mpHandle;
                            });
                            if (item) {
                                var className = '';
                                switch(item.safety) {
                                    case 'success':
                                        className = 'fa fa-check text-success pull-right';
                                        textClassName = 'text-success';
                                        break;
                                    case 'warning':
                                        className = 'fa fa-warning text-warning pull-right';
                                        textClassName = 'text-warning';
                                        break;
                                    case 'danger':
                                        className = 'fa fa-exclamation-circle text-danger pull-right';
                                        textClassName = 'text-danger';
                                        break;
                                }

                                if (className) {
                                    $addon.find('i').removeClass().addClass(className);
                                }
                            }
                        }
                        if (item) {
                            $addon.find('.ccm-dashboard-update-detail-status-text').addClass(textClassName).html(item.status);
                        } else {
                            $addon.find('.ccm-dashboard-update-detail-status-text').html(<?php echo json_encode(t('No information about this add-on available.'))?>);
                        }
                    });
                }
            });
        });
        </script>


    <?php } else { ?>


        <?php if ($downloadableUpgradeAvailable) { ?>

            <h2><?php echo t('Available Update for Download'?></h2>
            <form method="post" action="<?php echo $view->action('download_update'?>" id="ccm-download-update-form">

                <?php echo Loader::helper('validation/token')->output('download_update'?>

                <legend style="line-height:40px">
                    <?php echo t('Version: %s'$remoteUpdate->getVersion()) ?>.
                    <?php echo t('Release Date: %s'date(t('F d, Y'), strtotime($remoteUpdate->getDate()))) ?>
                    <?php echo Loader::helper('concrete/ui')->submit(
                        
t('Download'),
                        
'ccm-download-update-form',
                        
'right',
                        
'btn-success'?>
                </legend>
                <div id="ccm-release-notes">
                    <?php echo $remoteUpdate->getNotes() ?>
                </div>
                <hr/>
                <span class="help-block"><?php echo t('Note: Downloading an update will NOT automatically install it.'?></span>

            </form>
            <script>
                $('header.ccm-dashboard-page-header').children().text(<?php echo json_encode(t('Currently Running %s'config::get('concrete.version'))) ?>);
            </script>

        <?php

            
}
        
?>

            <h2><?php echo t('Apply Downloaded Update'?></h2>
        <?php if (count($updates)) {
            
?>
            <div class="alert alert-warning">
                <i class="fa fa-warning"></i> <?php echo t(
                    
'Make sure you <a href="%s">backup your database</a> before updating.',
                    
$view->url('/dashboard/system/backup/backup')) ?>
            </div>
            <?php
            $ih 
Loader::helper('concrete/ui');
            
?>

            <p><?php echo t('Several updates are available. Please choose the desired update from the list below.'?></p>
            <span class="label"><?php echo t('Current Version'?> <?php echo config::get('concrete.version'?></span>
            <form method="post" class="form" action="<?php echo $view->action('start'?>" id="ccm-update-form">
                <?php
                $checked 
true;
                foreach (
$updates as $upd) {
                    
?>
                    <div class="radio">
                        <label>
                            <input type="radio" name="updateVersion"
                                   value="<?php echo $upd->getUpdateVersion() ?><?php echo (!$checked '' "checked"?> />
                            <?php echo $upd->getUpdateVersion() ?>
                        </label>
                    </div>
                    <?php
                    $checked 
false;
                }
                
?>
                <div class="ccm-dashboard-form-actions-wrapper">
                    <div class="ccm-dashboard-form-actions">
                        <?php echo $ih->submit(t('Update'), false'right''btn-primary'?>
                    </div>
                </div>
            </form>
            </div>
            <div class="clearfix">&nbsp;</div>
        <?php
        
} else { ?>
            <p><?php echo t('No updates are ready to be installed.')?></p>

        <?php ?>
    <?php ?>

<?php } else { ?>
    <p><?php echo t('You do not have permission to upgrade this installation of concrete5.')?></p>
<?php ?>
Онлайн: 0
Реклама