Система управления «Сайт PRO»
Версия 20240107

search.page.php

Обычная страница в поиске по сайту

Вызывается из:

Исходный код
<?php
if ($Find = $Page->App()->getObject("find")) {
    $title = $Find->highlight(htmlspecialchars($Page->title));
    $brief = $Find->highlight(isset($Page->full) ? $Page->full : $Page->getFull(), true);
} else {
    $title = htmlspecialchars($Page->title);
    $brief = isset($Page->full) ? $Page->full : $Page->getFull();
}
?>
<div class="result">
<strong><?=$Page->position?>.&#160;</strong>
<a href="<?=$Page->href()?>"><?=$title?></a>
<p><?=$brief?></p>
</div>