You are here

function theme_classified_overview in Classified Ads 6.3

Implements hook_theme_classified_overview().

This is just a default "table" implementation, to allow overrides in themes. Define function phptemplate_classified_overview() in your theme template.php to achieve this.

1 theme call to theme_classified_overview()
_classified_page_overview in ./classified.module
Page callback for 'classified'.

File

./classified.module, line 1626
A pure D6 classified ads module inspired by the ed_classified module.

Code

function theme_classified_overview($header, $rows, $attributes = array(), $caption = NULL) {
  return theme('table', $header, $rows, $attributes, $caption);
}