Файл: adultscript-2.0.3-pro/files/mobile/templates/default/video_inter.tpl.php
Строк: 42
<?php defined('_VALID') or die('Restricted Access!'); ?>
<?php $inter_timeout = VF::cfg_item('module.mobile.inter_timeout'); ?>
<script type="text/javascript">
var counter = <?php echo $inter_timeout; ?>;
function countdown() {
if (counter == 0) {
clearInterval(timer);
window.location.href = $("a#video-url").attr('href');
}
$("#countdown").html(counter);
--counter;
}
var timer = setInterval(function(){countdown();}, 1000);
</script>
<div id="view-interstitial" data-role="content" class="ui-content">
<center><?php echo p('adv', 'mobile-inter'); ?></center>
<a href="<?php echo $this->video['mobile_url']; ?>" rel="nofollow" id="video-url" class="ui-btn">Continue to watch video <?php if ($inter_timeout >0): echo '(<span id="countdown">',$inter_timeout,'</span>)'; endif; ?> -></a>
</div>