You are here

function theme_ed_classified_teaser in Classified Ads 6.2

Same name and namespace in other branches
  1. 5.2 ed_classified_themefuncs.inc \theme_ed_classified_teaser()
  2. 5 ed_classified_themefuncs.inc \theme_ed_classified_teaser()
  3. 7.2 ed_classified_themefuncs.inc \theme_ed_classified_teaser()
1 theme call to theme_ed_classified_teaser()
ed_classified_view in ./ed_classified.module
Implements hook_view().

File

./ed_classified_themefuncs.inc, line 216
$ Simple text-based classified ads module.

Code

function theme_ed_classified_teaser($node) {
  return '<div class=\'classified-teaser\'>' . check_markup($node->teaser, $node->format, FALSE) . '</div><br/>' . theme('ed_classified_ending_date', $node->expires_on);
}