10 lines
264 B
PHP
10 lines
264 B
PHP
|
<?php
|
||
|
include_once("bcspamblock.php");
|
||
|
class Zend_View_Helper_BcSpamBlock extends Zend_View_Helper_FormElement{
|
||
|
|
||
|
public function bcSpamBlock($name, $value='', $attribs = null){
|
||
|
|
||
|
$xhtml = bcspamblock_generate(true);
|
||
|
return $xhtml;
|
||
|
}
|
||
|
}
|