function ddblock_subject in Dynamic display block 7
Same name and namespace in other branches
- 6 ddblock.module \ddblock_subject()
return subject of block.
Parameters
$origin: Origin of the block.
$delta: Blocknumber of the block.
Return value
string with title of the block.
1 call to ddblock_subject()
- ddblock_block_view in ./
ddblock.module - Implements hook_block_view().
File
- ./
ddblock.module, line 1709 - Enables your site to display dynamic content in a block.
Code
function ddblock_subject($origin, $delta) {
return ddblock_get_block_title($origin, $delta);
}