Files
crm.e5.pl/modules/Leads/AddGoogleContact.php

9 lines
180 B
PHP
Raw Permalink Normal View History

2024-04-27 09:23:34 +02:00
<?php
if (!$_REQUEST['record'] || $_REQUEST['record']=='') {
echo '5'; return;
}
$a = new Lead();
$a->retrieve($_REQUEST['record']);
echo $a->AddGoogleContact();
return;