function block_block_view

Implements hook_block_view().

Generates the administrator-defined blocks for display.

1 call to block_block_view()
BlockTestCase::testCustomBlock in modules/block/block.test
Test creating custom block, moving it to a specific region and then deleting it.

File

modules/block/block.module, line 244

Code

function block_block_view($delta = '') {
    $block = db_query('SELECT body, format FROM {block_custom} WHERE bid = :bid', array(
        ':bid' => $delta,
    ))->fetchObject();
    $data['subject'] = NULL;
    $data['content'] = check_markup($block->body, $block->format, '', TRUE);
    return $data;
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.