theme_nestoria_listing

Definition

theme_nestoria_listing($listing)
nestoria/nestoria.module, line 117

Description

Theme the data

Code

function theme_nestoria_listing($listing) {
  $link = l($listing['price_formatted'], $listing['lister_url'], array(), NULL, NULL, TRUE, TRUE);
  $image = theme('image', $listing['thumb_url'], check_plain($listing['title']), check_plain($listing['title']), NULL, FALSE);
  $row = array($image, check_plain($listing['title']), $link); 
    return $row;
}