block_custom_block_get
- Versions
- 7
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.
Code
modules/block/block.module, line 400
<?php
function block_custom_block_get($bid) {
return db_query("SELECT * FROM {block_custom} WHERE bid = :bid", array(':bid' => $bid))->fetchAssoc();
}
?>Login or register to post comments 