mirror of
https://github.com/kennethreitz-archive/shopp.git
synced 2026-06-05 23:40:16 +00:00
6 lines
360 B
PHP
6 lines
360 B
PHP
<ul class="subsubsub">
|
|
<?php $i = 0; foreach ($this->Admin->settings as $key => $screen): ?>
|
|
<li><a href="?page=<?php echo $screen[0] ?>"<?php if ($_GET['page'] == $screen[0]) echo ' class="current"'; ?>><?php echo $screen[1]; ?></a><?php if (count($this->Admin->settings)-1!=$i++): ?> | <?php endif; ?></li>
|
|
<?php endforeach; ?>
|
|
</ul>
|
|
<br class="clear" />
|