git-svn-id: https://192.168.0.254/svn/Proyectos.Incam_FormulariosCalidad/trunk@1 e2c41b2c-0c6f-0149-8b81-50b1a9191bb3
26 lines
581 B
PHP
26 lines
581 B
PHP
<?php
|
|
/******************************************************************************
|
|
MachForm
|
|
|
|
Copyright 2007 Appnitro Software. This code cannot be redistributed without
|
|
permission from http://www.appnitro.com/
|
|
|
|
More info at: http://www.appnitro.com/
|
|
******************************************************************************/
|
|
|
|
|
|
/** Hook samples **
|
|
//sample customizing captcha look and feel
|
|
function form2_hook_pre_captcha(){
|
|
$capthca_theme =<<<EOT
|
|
<script>
|
|
var RecaptchaOptions = {
|
|
theme : 'blackglass'
|
|
};
|
|
</script>
|
|
EOT;
|
|
return $capthca_theme;
|
|
}
|
|
|
|
**/
|
|
?>
|