Skip to content

Instantly share code, notes, and snippets.

@mauriciogofas
Last active March 23, 2019 05:09
Show Gist options
  • Save mauriciogofas/0b7dfd1688b52be49bdede6c2c7139ac to your computer and use it in GitHub Desktop.
Save mauriciogofas/0b7dfd1688b52be49bdede6c2c7139ac to your computer and use it in GitHub Desktop.
/modules/gateways/gofasgerencianetboleto/includes/customconfig/custom_field_to_ignore.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
*/
if(!defined('WHMCS')) { die('Esse arquivo não pode ser acessado diretamente'); }
/**
*
* If extra custom configs, show here
* since v2_2_0
*
*/
$custom_field_to_ignore = array(
array(
// customfield Não Gerar o Boleto ao gerar a fatura
'FriendlyName' => $opt_num++.'- Campo do Perfil "Não gerar Boleto"',
'Type' => 'dropdown',
'Default' => '0',
'Options' => $customfields,
'Description' => 'Escolha o <i title="WHMCS > Opções > Campos personaliz. Clientes" style="cursor: help;">Campo Personalizado de Clientes</i> usado para apontar no perfil dos clientes, os que não devem gerar o Boleto ao gerar a Fatura. Com essa opção em funcionamento, clientes que tiverem esse custom_field ativo no perfil, só terão Boletos gerados ao acessar a Fatura.',
),
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment