You are here

function read_more_theme in Read More Link 7

Implements hook_theme().

File

./read_more.module, line 256
Customize the "Read More" link shown in teasers.

Code

function read_more_theme($existing, $type, $theme, $path) {
  return array(
    'read_more_link' => array(
      'variables' => array(
        'node' => NULL,
        'display' => NULL,
        'view_mode' => NULL,
      ),
    ),
  );
}