Files
2025-03-12 17:06:23 +01:00

18 lines
965 B
PHP

<?php $routing = sfRouting::getInstance(); ?>
<?php $module = stConfiguration::getInstance()->getDesktopModule($sf_context->getModuleName()); ?>
<div class="list-menu">
<ul>
<?php foreach ($items as $action => $name): $url = url_for($action) ?>
<li class="<?php echo $selected_item_path == $url ? 'selected' : 'none' ?>"><a href="<?php echo $url ?>"<?php if ($url[0] != '/'): ?> target="_blank"<?php endif ?>><?php echo $name ?></a></li>
<?php endforeach; ?>
<li>
<?php if (sfContext::getInstance()->getUser()->getCulture() == 'pl_PL'): ?>
<a href="https://www.sote.pl/docs/konfiguracja-zdjec" target="_blank"><?php echo __('Dokumentacja'); ?></a>
<?php else: ?>
<a href="https://www.soteshop.com/docs/images_configuration" target="_blank"><?php echo __('Documentation'); ?></a>
<?php endif; ?>
</li>
</ul>
<br style="clear: left" />
</div>