1
0
Fork 0
mirror of https://github.com/janickiy/yii2-nomer synced 2025-02-15 03:11:58 +00:00
yii2-nomer/views/search/sprut.php
2020-02-05 06:34:26 +03:00

21 lines
427 B
PHP

<?php
/* @var $this \yii\web\View */
/* @var $items int */
/* @var $phone string */
use yii\helpers\Url;
if (!$items) {
echo 'Ничего не найдено';
return;
}
$lines = explode("\n", $items);
echo implode("\n", array_splice($lines, 0, 10));
if (count($lines) > 10) {
echo '<div class="allRes"><a href="' . Url::toRoute(["result/scorista", "phone" => $phone]) . '">Подробнее</a></div>';
}