Incam_FormulariosCalidad/hooks/custom_hooks.php

26 lines
581 B
PHP
Raw Normal View History

<?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;
}
**/
?>