Вход Регистрация
Файл: concrete5.7.5.6/concrete/views/panels/details/page/caching.php
Строк: 223
<?php
defined
('C5_EXECUTE') or die("Access Denied.");

$form Loader::helper('form');
switch(
Config::get('concrete.cache.pages')) {
    case 
'blocks':
        
$globalSetting t('cache page if all blocks support it.');
        
$enableCache 1;
        break;
    case 
'all':
        
$globalSetting t('enable full page cache.');
        
$enableCache 1;
        break;
    case 
0:
        
$globalSetting t('disable full page cache.');
        
$enableCache 0;
        break;
}
switch(
Config::get('concrete.cache.full_page_lifetime')) {
    case 
'default':
        
$globalSettingLifetime Loader::helper('date')->describeInterval(Config::get('concrete.cache.lifetime'));
        break;
    case 
'custom':
        
$globalSettingLifetime Loader::helper('date')->describeInterval(Config::get('concrete.cache.full_page_lifetime_value'));
        break;
    case 
'forever':
        
$globalSettingLifetime t('Until manually cleared');
        break;
}
?>
<section class="ccm-ui">
    <header><?php echo t('Page Caching')?></header>
    <form method="post" action="<?php echo $controller->action('submit')?>" data-dialog-form="caching" data-panel-detail-form="caching">

    <?php echo Loader::helper('concrete/ui/help')->display('panel''/page/caching')?>

        <p class="lead"><?php echo t('Enable Cache')?></p>

        <div class="radio">
        <label>
            <?php echo $form->radio('cCacheFullPageContent', -1$c->getCollectionFullPageCaching(), array('enable-cache' => $enableCache))?>
            <?php echo t('Use global setting - %s'$globalSetting)?>
        </label>
        </div>

        <div class="radio">
        <label>
            <?php echo $form->radio('cCacheFullPageContent'0$c->getCollectionFullPageCaching(), array('enable-cache' => 0))?>
            <?php echo t('Do not cache this page.')?>
        </label>
        </div>

        <div class="radio">
        <label>
            <?php echo $form->radio('cCacheFullPageContent'1$c->getCollectionFullPageCaching(), array('enable-cache' => 1))?>
            <?php echo t('Cache this page.')?>
        </label>
        </div>

        <hr/>

        <p class="lead"><?php echo t('Cache for how long?')?></p>

        <div class="ccm-properties-cache-lifetime input">
        <?php $val = ($c->getCollectionFullPageCachingLifetimeCustomValue() > && $c->getCollectionFullPageCachingLifetime()) ? $c->getCollectionFullPageCachingLifetimeCustomValue() : ''?>

        <div class="radio">
        <label>
            <input type="radio" name="cCacheFullPageContentOverrideLifetime" value="0" <?php if ($c->getCollectionFullPageCachingLifetime() == '0') { ?> checked="checked" <?php ?> />
            <?php echo t('Use global setting - %s'$globalSettingLifetime)?>
        </label>
        </div>

        <div class="radio">
        <label>
            <?php echo $form->radio('cCacheFullPageContentOverrideLifetime''forever'$c->getCollectionFullPageCachingLifetime())?>
            <?php echo t('Until manually cleared')?>
        </label>
        </div>

        <div class="radio">
        <label>
            <?php echo $form->radio('cCacheFullPageContentOverrideLifetime''custom'$c->getCollectionFullPageCachingLifetime())?>
            <?php echo t('Custom')?>
        </label>
        </div>

        <div class="form-group form-inline" style="margin-left: 40px"><?php echo $form->text('cCacheFullPageContentLifetimeCustom'$val, array('style' => 'width: 40px'))?> <?php echo t('minutes')?></div>

        </div>

        <hr/>
        <p class="lead"><?php echo t('Cache Status')?></p>

        <?php
        $cache 
PageCache::getLibrary();
        
$rec $cache->getRecord($c);
        if (
$rec instanceof ConcreteCoreCachePagePageCacheRecord) { ?>
            <div class="alert alert-success">
                <?php echo t('This page currently exists in the full page cache. It expires %s.'Loader::helper('date')->date('m/d/Y g:i a'$rec->getCacheRecordExpiration()))?>
                &nbsp;&nbsp;<button type="button" class="btn btn-xs btn-default pull-right" id="ccm-button-remove-page-from-cache"><?php echo t('Purge')?></button>
            </div>
        <?php } else if ($rec instanceof ConcreteCoreCachePageUnknownPageCacheRecord) { ?>
            <div class="alert alert-info">
                <?php echo t('This page <strong>may</strong> exist in the page cache.')?>
                &nbsp;&nbsp;<button type="button" class="btn btn-xs btn-default pull-right" id="ccm-button-remove-page-from-cache"><?php echo t('Purge')?></button>
            </div>
            <?php } else { ?>
            <div class="alert alert-info"><?php echo t('This page is not currently in the full page cache.')?></div>
        <?php ?>

    </form>
    <div class="ccm-panel-detail-form-actions dialog-buttons">
        <button class="pull-left btn btn-default" type="button" data-dialog-action="cancel" data-panel-detail-action="cancel"><?php echo t('Cancel')?></button>
        <button class="pull-right btn btn-success" type="button" data-dialog-action="submit" data-panel-detail-action="submit"><?php echo t('Save Changes')?></button>
    </div>

</section>

<script type="text/javascript">
    ccm_settingsSetupCacheForm = function(reset) {
        var obj = $('input[name=cCacheFullPageContent]:checked');
        if (obj.attr('enable-cache') == 1) {
            $('div.ccm-properties-cache-lifetime input').attr('disabled', false);
        } else {
            $('div.ccm-properties-cache-lifetime input').attr('disabled', true);
            $('input[name=cCacheFullPageContentOverrideLifetime][value=0]').attr('checked', true);
        }
        var obj2 = $('input[name=cCacheFullPageContentOverrideLifetime]:checked');
        if (obj2.val() == 'custom') {
            $('input[name=cCacheFullPageContentLifetimeCustom]').attr('disabled', false);
        } else {
            $('input[name=cCacheFullPageContentLifetimeCustom]').attr('disabled', true);
            if (reset) {
                $('input[name=cCacheFullPageContentLifetimeCustom]').val('');
            }
        }
    }
    $(function() {
        $('#ccm-button-remove-page-from-cache').on('click', function() {
            jQuery.fn.dialog.showLoader();
            $.getJSON('<?php echo $controller->action("purge")?>', function(r) {
                jQuery.fn.dialog.hideLoader();
                ConcreteAlert.notify({
                'message': r.message
                });
                ConcretePanelManager.exitPanelMode();
            });
        });


        $("input[name=cCacheFullPageContent]").click(function() {
            ccm_settingsSetupCacheForm(true);
        });
        $("input[name=cCacheFullPageContentOverrideLifetime]").click(function() {
            ccm_settingsSetupCacheForm(true);
        });
        $("input[name=cCacheFullPageContentOverrideLifetime][value=custom]").click(function() {
            $('input[name=cCacheFullPageContentLifetimeCustom]').get(0).focus();
        });
        ccm_settingsSetupCacheForm();
    });
</script>
Онлайн: 1
Реклама