You are here

function theme_ed_classified_body in Classified Ads 6.2

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

File

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

Code

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