function readmorecontrol_theme in Read More Control 7
Implements hook_theme().
File
- ./
readmorecontrol.module, line 24 - Defines options to control how the Read more link is displayed on teasers.
Code
function readmorecontrol_theme($existing, $type, $theme, $path) {
return array(
'readmorecontrol_link' => array(
'variables' => array(
'entity_type' => NULL,
'entity' => NULL,
'bundle' => NULL,
'link' => NULL,
),
),
);
}