Файл: adultscript-2.0.3-pro/files/admin/templates/default/tools_cron_run.tpl.php
Строк: 31
<?php defined('_VALID') or die('Restricted Access!'); ?>
<?php echo $this->fetch('errors'); ?>
<?php echo $this->fetch('messages'); ?>
<?php echo $this->fetch('warnings'); ?>
<div id="container" class="clearfix">
<div id="page">
<?php echo $this->fetch('tools_cron_menu'); ?>
<div class="content clearfix">
<?php if (isset($this->script) && $this->script): ?>
Execution Time: <?php echo VDate::format($this->script['exec_time'], 'd M, Y h:i:s'); ?><br />
Execution Status: <?php if ($this->script['exec_status'] == '0'): echo '<span class="label label-important">Failed</span>'; else: echo '<span class="label label-success">Succ
ess</span>'; endif; ?><br /><br />
<a href="<?php echo ADMIN_URL; ?>/index.php?q=tools/cron" class="btn btn-large"><strong>Manage Cron Scripts</strong></a>
<?php else: ?>
<div class="none">Invalid cron script!</div>
<?php endif; ?>
</div>
</div>
</div>