first commit

This commit is contained in:
2023-09-04 21:59:34 +02:00
commit 650ef5b3e1
196 changed files with 24080 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
<?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;
}