function imageblock_block_view in Image Block 7
Implements hook_block_view().
File
- ./
imageblock.module, line 169 - imageblock.module Primarily Drupal hooks.
Code
function imageblock_block_view($delta = '') {
$block = db_query('SELECT body, format, fid, data FROM {imageblock} WHERE bid = :bid', array(
':bid' => $delta,
))
->fetchObject();
$data['subject'] = NULL;
$data['content'] = theme('imageblock_content', array(
'block' => $block,
));
return $data;
}