You are here

function theme_antispam_counter_block in AntiSpam 6

Same name and namespace in other branches
  1. 7 antispam.module \theme_antispam_counter_block()

Allow themes customize the content of the antispam spam counter block.

Parameters

array arguments 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 in ./antispam.module
Implementation of hook_block().

File

./antispam.module, line 1638

Code

function theme_antispam_counter_block($args) {
  return $args['content'];
}