function classified_block_view in Classified Ads 6.3
Same name and namespace in other branches
- 7.3 classified.module \classified_block_view()
Implements the D7 hook_block_view().
1 call to classified_block_view()
- classified_block in ./
classified.module - Implements hook_block().
File
- ./
classified.module, line 713 - A pure D6 classified ads module inspired by the ed_classified module.
Code
function classified_block_view($delta) {
$function = '_classified_block_view_' . $delta;
$ret = function_exists($function) ? $function() : NULL;
return $ret;
}