mirror of
https://github.com/janickiy/yii2-nomer
synced 2025-02-15 03:11:58 +00:00
21 lines
427 B
PHP
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>';
|
|
}
|
|
|