28 lines
1.5 KiB
PHTML
Raw Normal View History

2015-07-06 16:58:50 +02:00
<?php $this->displayTemplate('header') ?>
<h2><?php echo $this->l('We are currently checking PrestaShop compatibility with your system environment') ?></h2>
<p><?php echo $this->l('If you have any questions, please visit our <a href="%1$s" target="_blank">documentation</a> and <a href="%2$s" target="_blank">community forum</a>.', $this->getDocumentationLink(), $this->getForumLink()); ?></p>
<?php if ($this->tests['required']['success']): ?>
<h3 class="okBlock"><?php echo $this->l('PrestaShop compatibility with your system environment has been verified!') ?></h3>
<?php else: ?>
<h3 class="errorBlock"><?php echo $this->l('Oops! Please correct the item(s) below, and then click "Refresh information" to test the compatibility of your new system.') ?></h3>
<?php endif; ?>
<!-- Display tests results -->
<?php foreach ($this->tests_render as $type => $categories): ?>
<ul id="<?php echo $type ?>">
<?php foreach ($categories as $category): ?>
<li class="title <?php if ($category['success'] == 1): ?>ok<?php endif;?>"><?php echo $category['title'] ?></li>
<?php $i = 0; foreach ($category['checks'] as $id => $lang): ?>
<li class="required <?php if ($i == 0): ?>first<?php endif;?> <?php echo $this->tests[$type]['checks'][$id] ?>">
<?php echo $lang ?>
</li>
<?php $i++; endforeach; ?>
<?php endforeach; ?>
</ul>
<?php endforeach; ?>
<p><input class="button" value="<?php echo $this->l('Refresh these settings')?> " type="submit" id="req_bt_refresh" /></p>
<?php $this->displayTemplate('footer') ?>