views-more.tpl.php

  1. 3.x theme/views-more.tpl.php
  2. 2.x theme/views-more.tpl.php

Theme the more link.

  • $view: The view object.
  • $more_url: the url for the more link.
  • $link_text: the text for the more link.

File

theme/views-more.tpl.php
View source
  1. <?php
  2. /**
  3. * @file
  4. * Theme the more link.
  5. *
  6. * - $view: The view object.
  7. * - $more_url: the url for the more link.
  8. * - $link_text: the text for the more link.
  9. *
  10. * @ingroup views_templates
  11. */
  12. ?>
  13. <div class="more-link">
  14. <a href="<?php print $more_url ?>">
  15. <?php print $link_text; ?>
  16. </a>
  17. </div>

Related topics