ConstruccionesCNJ_Web/Source/gallery2/upgrade/templates/UpgradeOtherModulesSuccess.html
2007-10-31 12:30:19 +00:00

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&raquo;'), $nextStep); ?></a>
</div></div></div></div></div></div></div></div></div>
</div>
<?php endif; ?>