Файл: protected/views/adv.php
Строк: 10
<?php if (count ($advProvider->getData ())): ?><div class="adv"><?php endif; ?>
<?php
/*
* Вывод рекламных ссылок
*/
foreach ($advProvider->getData () as $link)
{
$titles_array = explode ('
', $link->titles);
$title = $titles_array[array_rand ($titles_array)];
echo ' <a href="' . $this->createUrl ('//adv/default/go', array ('id' => $link->id)) . '">' . bbCode::format (CHtml::encode ($title)) . '</a><br />
';
}
?>
<?php if (count ($advProvider->getData ())): ?></div><?php endif; ?>