theme_more_link

Versions
mediamosa-21
theme_more_link($variables)

Returns code that emits the 'more' link used on blocks.

Parameters

$variables An associative array containing:

  • url: The url of the main page
  • title: A descriptive verb for the link, like 'Read more'

Related topics

Code

includes/theme.inc, line 1944

<?php
function theme_more_link($variables) {
  return '<div class="more-link">' . t('<a href="@link" title="@title">More</a>', array('@link' => check_url($variables['url']), '@title' => $variables['title'])) . '</div>';
}
?>