PHP Classes

File: modules/system/controllers/updates/_update_form.php

Recommend this page to a friend!
  Packages of Luke Towers   Winter   modules/system/controllers/updates/_update_form.php   Download  
File: modules/system/controllers/updates/_update_form.php
Role: Auxiliary script
Content type: text/plain
Description: Configuration script
Class: Winter
Content management system that uses MVC
Author: By
Last change:
Date: 8 months ago
Size: 1,188 bytes
 

Contents

Class file image Download
<div id="checkUpdatesPopup">
    <?= Form::open(['id' => 'updateForm']) ?>
<div class="modal-header">
            <button type="button" class="close" data-dismiss="popup">&times;</button>
            <h4 class="modal-title"><?= e(trans('system::lang.updates.name')) ?></h4>
        </div>

        <div id="updateContainer">
            <div class="modal-body">

                <div class="loading-indicator-container">
                    <p>&nbsp;</p>
                    <div class="loading-indicator transparent">
                        <div><?= e(trans('system::lang.updates.update_loading')) ?></div>
                        <span></span>
                    </div>
                </div>

            </div>
            <div class="modal-footer">
                <button
                    type="button"
                    class="btn btn-default"
                    data-dismiss="popup">
                    <?= e(trans('backend::lang.form.cancel')) ?>
</button>
            </div>
        </div>

    <?= Form::close() ?>
</div>

<script>
    $('#checkUpdatesPopup').on('popupComplete', function() {
        $.wn.updateProcess.check()
    })
</script>