You are here

function ed_readmore_theme in Read More Link (Drupal 6 and earlier) 6.5

Implementation of hook_theme().

File

./ed_readmore.module, line 338
Customize the "Read More" link shown in teasers.

Code

function ed_readmore_theme($existing, $type, $theme, $path) {
  return array(
    'ed_readmore_link' => array(
      'arguments' => array(
        'link_text' => NULL,
        'link_destination' => NULL,
        'link_options' => NULL,
        'display' => NULL,
      ),
    ),
  );
}