Welcome to mirror list, hosted at ThFree Co, Russian Federation.

allSteps.tpl « templates « Installation « plugins - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5cba61e4d5fc419e0eff47204104a98fb104729f (plain)
1
2
3
4
5
6
7
8
9
10
11
<ul>
{foreach from=$allStepsTitle key=stepId item=stepName}
	{if $currentStepId > $stepId}
	<li class="pastStep">{$stepName|translate}</li>
	{elseif $currentStepId == $stepId}
	<li class="actualStep">{$stepName|translate}</li>
	{else}
	<li class="futureStep">{$stepName|translate}</li>
	{/if}
{/foreach}
</ul>