Skip to content

Instantly share code, notes, and snippets.

View mauriciogofas's full-sized avatar

Mauricio Gofas mauriciogofas

View GitHub Profile
@mauriciogofas
mauriciogofas / 6_custom.php
Last active January 12, 2021 20:47
Gerencianet Cartão - substitui $system_url adicionando esse arquivo ao diretório /modules/gateways/gofasgerencianetcartao/params/ #whmcs #gerencianet #ggnc
<?php
/**
* Módulo Gerencinet Cartão para WHMCS
* @author Mauricio Gofas | gofas.net
* @see https://gofas.net/?p=8423
* @copyright 2016 - 2019 https://gofas.net
* @license https://gofas.net?p=9340
* @support https://gofas.net/?p=8343
* @version 2.1.2
*/
@mauriciogofas
mauriciogofas / whmcs_merge_tags_template.txt
Last active January 12, 2021 20:48
Merge Tags condicionais para templates de email do WHMCS. Diferencia as informações impressas nos emails de acordo com o módulo associado à fatura.
{if $invoice_payment_method eq "Gofas Gerencianet - Boleto"}
Exibe informações do boleto gerado pelo módulo Gofas Gerencianet - Boleto, caso este seja o módulo associado à fatura.
{$gbf_billet_info}
{else}
Exibe outras informações de sua escolha, caso o módulo associado à Fatura não seja o Gofas Gerencianet - Boleto. Deixe em branco essa linha se não desejar exibir nada no lugar das informações do módulo.
{/if}
@mauriciogofas
mauriciogofas / 7_new_billet_duedate.php
Created March 27, 2019 19:49
Módulo Gofas Boleto Fácil para WHMCS: Exemplo de configuração adicional para alterar a data de vencimento do Boleto. /modules/gateways/gofasboletofacil/params/7_new_billet_duedate.php
<?php
/**
* Módulo Boleto Fácil para WHMCS (boletobancario.com)
* @author Mauricio Gofas | gofas.net
* @see https://gofas.net/
* @copyright 2018/2019 https://gofas.net
* @license https://gofas.net?p=9340
* @support https://gofas.net/foruns/
* @version 1.0.4
*/
@mauriciogofas
mauriciogofas / configuracao_adicional.php
Last active January 12, 2021 20:48
Gofas Gerencianet Boleto para WHMCS: Exemplo de configuração adicional para alterar a data de vencimento do Boleto. /modules/gateways/gofasgerencianetboleto/params/customparams/configuracao_adicional.php
<?php
/**
* Módulo Gerencinet Boleto para WHMCS
* @author Mauricio Gofas | gofas.net
* @see https://gofas.net/?p=7893
* @copyright 2016->2018 Gofas Softwares
* @license https://gofas.net?p=9340
* @support https://gofas.net/?p=7856
* @version 2.2.1
*/
@mauriciogofas
mauriciogofas / configuracao_adicional.php
Last active January 12, 2021 20:48
Exemplo de array de configuração adicional para o módulo Gerencianet Boleto para WHMCS. /modules/gateways/gofasgerencianetboleto/includes/customconfig/configuracao_adicional.php
<?php
/**
* Módulo Gerencinet Boleto para WHMCS
* @author Mauricio Gofas | gofas.net
* @see https://gofas.net/?p=7893
* @copyright 2016->2018 Gofas Softwares
* @license https://gofas.net?p=9340
* @support https://gofas.net/?p=7856
* @version 2.2.1
*/
@mauriciogofas
mauriciogofas / product_groups_to_ignore.php
Last active January 12, 2021 20:50
Ignorar Grupos de produtos ao gerar o Boleto - Módulo Gofas Gerencianet Boleto para WHMCS #whmcs #gerencianet #boleto #ggnb
<?php
/**
* Módulo Gerencinet Boleto para WHMCS
* @author Mauricio Gofas | gofas.net
* @see https://gofas.net/?p=7893
* @copyright 2016->2018 Gofas Softwares
* @license https://gofas.net?p=9340
* @support https://gofas.net/?p=7856
* @version 2.2.1
*/
@mauriciogofas
mauriciogofas / custom_field_to_ignore.php
Last active April 2, 2023 22:50
Definir gerar ou não o boleto ao gerar a fatura no perfil do cliente, via custom field #whmcs #gerencinet #boleto #ggnb
<?php
/**
* Módulo Gerencinet Boleto para WHMCS
* @author Mauricio Gofas | gofas.net
* @see https://gofas.net/?p=7893
* @copyright 2016->2018 Gofas Softwares
* @license https://gofas.net?p=9340
* @support https://gofas.net/?p=7856
* @version 2.2.1
*/
@mauriciogofas
mauriciogofas / whmcs_e-mail_template_if_payment_method.txt
Last active January 12, 2021 20:40
Condicional lógica para template de e-mail - texto diferente no botão de acordo com o método de pagamento
{if $invoice_payment_method eq "Boleto Bancário"}
<br />
<a class="paybuttom" href="{$whmcs_url}auth.php?email={$client_email}&amp;userid={$client_id}&amp;firstname={$client_first_name}&amp;lastname={$client_last_name}&amp;hash={$hash}&amp;whmcsurl={$whmcs_url}&amp;goto=viewinvoice.php?id={$invoice_id}">Visualizar Boleto</a>
<br />
{else}
<br />
<a class="paybuttom" href="{$whmcs_url}auth.php?email={$client_email}&amp;userid={$client_id}&amp;firstname={$client_first_name}&amp;lastname={$client_last_name}&amp;hash={$hash}&amp;whmcsurl={$whmcs_url}&amp;goto=viewinvoice.php?id={$invoice_id}">Visualizar Fatura</a>
<br />
{/if}