function block_custom_block_get

7.x block.module block_custom_block_get($bid)

Returns information from database about a user-created (custom) block.

Parameters

$bid: ID of the block to get information for.

Return value

Associative array of information stored in the database for this block. Array keys:

  • bid: Block ID.
  • info: Block description.
  • body: Block contents.
  • format: Filter ID of the filter format for the body.
2 calls to block_custom_block_get()
block_block_configure in drupal-7.x/modules/block/block.module
Implements hook_block_configure().
block_custom_block_delete in drupal-7.x/modules/block/block.admin.inc
Form constructor for the custom block deletion form.

File

drupal-7.x/modules/block/block.module, line 501
Controls the visual building blocks a page is constructed with.

Code

function block_custom_block_get($bid) {
  return db_query("SELECT * FROM {block_custom} WHERE bid = :bid", array(':bid' => $bid))->fetchAssoc();
}