9 lines
339 B
PHP
9 lines
339 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']?>
|
|
<br/>
|
|
<?php endforeach; ?>
|
|
<?= self::renderPartial('modals/categories.php', array('categories' => $categories), true) ?>
|