Вход Регистрация
Файл: concrete5.7.5.6/concrete/themes/concrete/background_image.php
Строк: 78
<?php defined('C5_EXECUTE') or die("Access Denied."); ?>
<?php $view
->inc('elements/header.php'); ?>

<div class="container">
<div class="row">
<div class="col-sm-10 col-sm-offset-1">
<?php
View
::element(
    
'system_errors',
    array(
        
'format' => 'block',
        
'error' => isset($error) ? $error null,
        
'success' => isset($success) ? $success null,
        
'message' => isset($message) ? $message null,
    )
);
?>
</div>
</div>

<style>
    body {
        background: url("<?php echo ASSETS_URL_IMAGES ?>/bg_login.png");
    }
</style>

<?php print $innerContent ?>

<div class="ccm-page-background-credit" style="display:none">
    <?php echo t('Photo Credit:'?>
    <a href="#" style="pull-right"></a>
</div>

</div>
</div>


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

    setTimeout(function() {

        var fade_div = $('<div/>').css({
            position: 'absolute',
            top: 0,
            left: 0,
            width: '100%'
        }).prependTo('body').height('200px');

        fade_div.hide()
            .append(
            $('<img/>')
                .css({ width: '100%', height: '100%' })
                .attr('src', '<?php echo ASSETS_URL_IMAGES ?>/login_fade.png'))
            .fadeIn();
    }, 0);

     <?php if(Config::get('concrete.white_label.background_image') !== 'none' && !Config::get('concrete.white_label.background_url')) { ?>
    $(function () {
        var shown = false, info;
        $.getJSON('<?php echo Core::getApplicationURL() . '/' DISPATCHER_FILENAME '/tools/required/dashboard/get_image_data' ?>', { image: '<?php echo $image ?>' }, function (data) {
            if (shown) {
                $('div.ccm-page-background-credit').fadeIn().children().attr('href', data.link).text(data.author.join());
            } else {
                info = data;
            }
        });
        $(window).on('backstretch.show', function() {
            shown = true;

            if (info) {
                $('div.ccm-page-background-credit').fadeIn().children().attr('href', info.link).text(info.author.join());
            }

        });
        $.backstretch("<?php echo Config::get('concrete.urls.background_feed') . '/' $image ?>", {
            fade: 500
        });
    });
    <?php } elseif (Config::get('concrete.white_label.background_url')) { ?>
        $.backstretch("<?php echo Config::get('concrete.urls.background_url'?>", {
            fade: 500
        });
    <?php ?>
});
</script>

<?php $view->inc('elements/footer.php'); ?>
Онлайн: 1
Реклама