You are here

function facetapi_block in Facet API 6.3

Same name and namespace in other branches
  1. 6 facetapi.module \facetapi_block()

@file Block realm code and hook implementations.

File

./facetapi.block.inc, line 7
Block realm code and hook implementations.

Code

function facetapi_block($op = 'list', $delta = 0, $edit = array()) {
  switch ($op) {
    case 'list':
      return facetapi_block_info();
      break;
    case 'view':
      return facetapi_block_view($delta);
      break;
  }
}