You are here

function classified_block_view in Classified Ads 7.3

Same name and namespace in other branches
  1. 6.3 classified.module \classified_block_view()

Implements hook_block_view().

File

./classified.module, line 802
A pure D7 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;
}