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

11 lines
293 B
PHP

<?php
global $xajax;
$xajax -> register( XAJAX_FUNCTION, 'showContactForm' );
function showContactForm()
{
$ajax = new xajaxResponse;
$ajax -> assign( 'ac-container', 'innerHTML', \site\VSite::drawAjaxContactForm() );
$ajax -> script( '$( "#ac-container" ).show();' );
return $ajax;
}