git-svn-id: https://192.168.0.254/svn/Proyectos.ConstruccionesCNJ_Web/trunk@5 a1d75475-e439-6a4c-b115-a3aab481e8ec
58 lines
2.0 KiB
HTML
58 lines
2.0 KiB
HTML
<h1><?php print _('Upgrade Plugins') ?></h1>
|
|
|
|
<?php if (isset($templateData['upgradedModule'])): ?>
|
|
<ul class="success">
|
|
<?php foreach ($templateData['upgradedModule'] as $moduleId => $moduleName): ?>
|
|
<li><?php printf(_("Upgraded the %s module successfully"), "<i>$moduleName</i>") ?></li>
|
|
<?php endforeach; ?>
|
|
</ul>
|
|
<?php endif; ?>
|
|
|
|
<?php if (isset($templateData['upgradedTheme'])): ?>
|
|
<ul class="success">
|
|
<?php foreach ($templateData['upgradedTheme'] as $themeId => $themeName): ?>
|
|
<li><?php printf(_("Upgraded the %s theme successfully"), "<i>$themeName</i>") ?></li>
|
|
<?php endforeach; ?>
|
|
</ul>
|
|
<?php endif; ?>
|
|
|
|
<?php if (!empty($templateData['needsConfig'])): ?>
|
|
<ul class="warning">
|
|
<?php foreach ($templateData['needsConfig'] as $warning): ?>
|
|
<li><?php print $warning; ?></li>
|
|
<?php endforeach; ?>
|
|
</ul>
|
|
<?php endif; ?>
|
|
|
|
<?php if (!empty($templateData['stackTrace'])): ?>
|
|
<h2>
|
|
<?php print _("Stack Trace:") ?>
|
|
</h2>
|
|
<div class="stack_trace">
|
|
<?php print $templateData['stackTrace']; ?>
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
<?php if (!empty($templateData['debug'])): ?>
|
|
<h2>
|
|
<?php print _("Debug Output:") ?>
|
|
</h2>
|
|
<div class="debug">
|
|
<pre>
|
|
<?php print $templateData['debug']; ?>
|
|
</pre>
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
<?php if ($templateData['anyUpgradeable']): ?>
|
|
<div class="go">
|
|
<div class="btn btn-continue"><div><div><div><div><div><div><div><div>
|
|
<a href="<?php generateUrl('index.php?step=' . $currentStep->getStepNumber()) ?>"><?php print _('Upgrade More Plugins'); ?></a>
|
|
</div></div></div></div></div></div></div></div></div>
|
|
<?php $nextStep = $stepNumber + 1 ?>
|
|
<div class="btn btn-continue"><div><div><div><div><div><div><div><div>
|
|
<a href="<?php generateUrl('index.php?step=' . $nextStep) ?>"><?php printf(_('Continue to Step %d»'), $nextStep); ?></a>
|
|
</div></div></div></div></div></div></div></div></div>
|
|
</div>
|
|
<?php endif; ?>
|