Last active
March 23, 2019 05:09
-
-
Save mauriciogofas/0b7dfd1688b52be49bdede6c2c7139ac to your computer and use it in GitHub Desktop.
/modules/gateways/gofasgerencianetboleto/includes/customconfig/custom_field_to_ignore.php
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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