mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 21:22:58 +01:00
4bc92a7aa1
* fix for blank client settings * Force all custom fields to strings * Fixes for bulk actions * Fixes for company POST route.. * Change text from Bitcoin to CRYPTO * Implement default_gateway_type_id in transformer * use scopes for company filtering * Implement validation for portal_domain * Add Google API client * Add activities to company transformer
37 lines
950 B
PHP
37 lines
950 B
PHP
<?php
|
|
/**
|
|
* Invoice Ninja (https://invoiceninja.com)
|
|
*
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
*
|
|
* @copyright Copyright (c) 2019. Invoice Ninja LLC (https://invoiceninja.com)
|
|
*
|
|
* @license https://opensource.org/licenses/AAL
|
|
*/
|
|
|
|
/**
|
|
* GLOBAL CONSTANTS ONLY
|
|
*
|
|
* Class constants to be assigned and accessed statically via
|
|
* their model ie, Invoice::STATUS_DEFAULT
|
|
*
|
|
*/
|
|
|
|
|
|
define('BANK_LIBRARY_OFX', 1);
|
|
define('GATEWAY_TYPE_CREDIT_CARD', 1);
|
|
define('GATEWAY_TYPE_BANK_TRANSFER', 2);
|
|
define('GATEWAY_TYPE_PAYPAL', 3);
|
|
define('GATEWAY_TYPE_CRYPTO', 4);
|
|
define('GATEWAY_TYPE_DWOLLA', 5);
|
|
define('GATEWAY_TYPE_CUSTOM1', 6);
|
|
define('GATEWAY_TYPE_ALIPAY', 7);
|
|
define('GATEWAY_TYPE_SOFORT', 8);
|
|
define('GATEWAY_TYPE_SEPA', 9);
|
|
define('GATEWAY_TYPE_GOCARDLESS', 10);
|
|
define('GATEWAY_TYPE_APPLE_PAY', 11);
|
|
define('GATEWAY_TYPE_CUSTOM2', 12);
|
|
define('GATEWAY_TYPE_CUSTOM3', 13);
|
|
define('GATEWAY_TYPE_TOKEN', 'token');
|
|
|