theme_more_link
includes/theme.inc, строка 1550
- Версии
- 6
theme_more_link($url, $title)
Returns code that emits the 'more'
link used on blocks.
Параметры
$url
The url of the main page
$title
A descriptive verb for the link, like 'Read more'
Связанные темы
Код
<?php
function theme_more_link($url, $title) {
return '<div class="more-link">'. t('<a href="@link" title="@title">more</a>', array('@link' => check_url($url), '@title' => $title)) .'</div>';
}
?>
Войдите или зарегистрируйтесь, чтобы получить возможность отправлять комментарии