repositório com os arquivos utilizados para integração entre o sistema SimplesIP e diversos sistemas.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

14 lines
464 B

<?php
include 'HubSoft.php';
$hub = new HubSoft();
$id_cliente_servico = $hub->agi()->get_variable('IDCLIENTESERVICO', true);
$retorno = $hub->desbloqueioConfianca($id_cliente_servico);
if ($retorno['status'] == 'success') {
$hub->executarFluxo('ANUNCIO', 'INT_DESBLOQUEIO_SUCESSO'.CONF_NOME_EMPRESA); // Sucesso
} else {
$hub->executarFluxo('ANUNCIO', 'INT_DESBLOQUEIO_FALHA'.CONF_NOME_EMPRESA); // Falha
}
?>