12 lines
528 B
PHP
12 lines
528 B
PHP
<h3>Список точек</h3>
|
|
|
|
<?php foreach ($points as $point): ?>
|
|
#<?=$point['id']?> <img src="<?=$point['categoryIcon']?>" /> <a href="/?point=<?=$point['id']?>"><?=$point['name']?></a>
|
|
<?=$point['author']?>
|
|
<?php if (App::$user->isAdmin == 1): ?>
|
|
- <a href="/page/point/id/<?=$point['id']?>">страница точки <span class="glyphicon glyphicon-new-window"></span></a>
|
|
<?php endif;?>
|
|
<br/>
|
|
<?php endforeach; ?>
|
|
<?= self::renderPartial('modals/categories.php', array('categories' => $categories), true) ?>
|