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?>. </strong>
<a href="<?=$Page->href()?>"><?=$title?></a>
<p><?=$brief?></p>
</div>