function theme_antispam_counter_block in AntiSpam 7
Same name and namespace in other branches
- 6 antispam.module \theme_antispam_counter_block()
Allow themes customize the content of the antispam spam counter block.
Parameters
array $args: A nested array where each element is: content: String; the completely built block content. counter: Integer; the current spam counter. since : String; the formatted 'counting since' date. text : Array; with 2 subarrays defined as follows: plain: Array with 2 elements ('short' and 'long'). html : Array with 2 elements ('short' and 'long'). image : String; the completely built IMG tag. block : Array; Block settings.
Return value
string The content of the block.
1 theme call to theme_antispam_counter_block()
- antispam_block_view in ./
antispam.module - Implements hook_block_view().
File
- ./
antispam.module, line 1799 - Primary hook implementations for the Antispam module.
Code
function theme_antispam_counter_block($args) {
return $args['content'];
}