Files
rm.rzeszow.pl/functions/xajax-newsletter.php
2023-09-04 21:59:34 +02:00

12 lines
278 B
PHP

<?php
global $xajax;
$xajax -> register( XAJAX_FUNCTION, 'newsletterSign' );
function newsletterSign( $type, $email )
{
\newsletter\FNewsletter::signEmail( $type, $email );
$ajax = new xajaxResponse;
$ajax -> script( 'document.location.href="./";' );
return $ajax;
}