You are here

function theme_video_teaser in Video 6

Same name and namespace in other branches
  1. 5 video.module \theme_video_teaser()
  2. 6.2 video.module \theme_video_teaser()

Theme the teaser

This is just in place for site admins and theme developers who need to adjust how the teaser is themed.

Parameters

$node: The node to be displayed.

$teaser: Whether we are to generate a "teaser" or summary of the node, rather than display the whole thing.

$page: Whether the node is being displayed as a standalone page. If this is TRUE, the node title should not be displayed, as it will be printed automatically by the theme system. Also, the module may choose to alter the default breadcrumb trail in this case.

Return value

html

1 theme call to theme_video_teaser()
video_view in ./video.module
Implementation of hook_view().

File

./video.module, line 1032
video.module

Code

function theme_video_teaser($node, $teaser = FALSE, $page = FALSE) {
  return $node->teaser;
}