git-svn-id: https://192.168.0.254/svn/Proyectos.ConstruccionesCNJ_Web/trunk@5 a1d75475-e439-6a4c-b115-a3aab481e8ec
40 lines
1.2 KiB
HTML
40 lines
1.2 KiB
HTML
<div>
|
|
<table cellspacing="0">
|
|
<tr>
|
|
<td class="heading" colspan="2">
|
|
<?php print _('Install Steps') ?>
|
|
</td>
|
|
</tr>
|
|
<?php for ($i = 0; $i < count($steps); $i++): ?>
|
|
<tr>
|
|
<td class="navnum">
|
|
<?php if ($i <= $currentStep->getStepNumber()
|
|
&& ($steps[$i]->isComplete() || $steps[$i]->isOptional())): ?>
|
|
<span class="success">√</span>
|
|
<?php elseif ($steps[$i]->isInError()): ?>
|
|
<span class="error">✗</span>
|
|
<?php else: ?>
|
|
<?php print $i ?>
|
|
<?php endif; ?>
|
|
</td>
|
|
<td class="navtext">
|
|
<?php $linkable = ($i == 0 ||
|
|
($i <= $currentStep->getStepNumber() + 1 &&
|
|
($steps[$i-1]->isComplete() || $steps[$i-1]->isOptional())));
|
|
?>
|
|
<?php if ($linkable): ?>
|
|
<a href="<?php generateUrl(sprintf('%s?step=%s', INDEX_PHP, $i)) ?>"
|
|
<?php if ($i == $currentStep->getStepNumber()): ?>
|
|
class="current"
|
|
<?php endif; ?>
|
|
>
|
|
<?php endif; ?>
|
|
<?php print $steps[$i]->stepName(); ?>
|
|
<?php if ($linkable): ?>
|
|
</a>
|
|
<?php endif; ?>
|
|
</td>
|
|
</tr>
|
|
<?php endfor; ?>
|
|
</table>
|
|
</div> |