You are here

function boost_block_view in Boost 7

Implements hook_block_view().

File

./boost.module, line 226
Caches generated output as a static file to be served directly from the webserver.

Code

function boost_block_view($delta = '') {
  $block = array();
  switch ($delta) {
    case 'status':
      module_load_include('inc', 'boost', 'boost.blocks');
      return boost_block_view_status();
  }
  return $block;
}