HEX
Server: Apache/2.4.25 (Debian)
System: Linux server17 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
User: web37 (1062)
PHP: 7.4.30
Disabled: show_source, highlight_file, apache_child_terminate, apache_get_modules, apache_note, apache_setenv, virtual, dl, disk_total_space, posix_getpwnam, posix_getpwuid, posix_mkfifo, posix_mknod, posix_setpgid, posix_setsid, posix_setuid, posix_uname, proc_nice, openlog, syslog, pfsockopen
Upload Files
File: /var/www/web37/htdocs/sexnetzwerk24/wp-content/themes/classipress/includes/payments/escrow/load.php
<?php
/**
 * Escrow Payments
 *
 * @package Components\Payments\Escrow
 */

/**
 * Order Statuses
 */
define( 'APPTHEMES_ORDER_PAID', 'tr_paid' );
define( 'APPTHEMES_ORDER_REFUNDED', 'tr_refunded' );


add_action( 'init', '_appthemes_register_escrow_statuses' );

// Escrow Gateways
require_once( dirname( __FILE__ ) . '/gateways/paypal-adaptive/paypal-adaptive-request.php' );
require_once( dirname( __FILE__ ) . '/gateways/paypal-adaptive/paypal-adaptive.php' );

// include escrow related files
require_once( dirname( __FILE__ ) . '/escrow-settings-form-class.php' );
require_once( dirname( __FILE__ ) . '/order-escrow-functions.php' );
require_once( dirname( __FILE__ ) . '/order-escrow-factory.php' );
require_once( dirname( __FILE__ ) . '/order-escrow-class.php' );
require_once( dirname( __FILE__ ) . '/admin/settings.php' );

/**
 * Register escrow related payments statuses.
 *
 * @return void
 */
function _appthemes_register_escrow_statuses() {
	if ( ! appthemes_is_escrow_enabled() ) {
		return;
	}

	register_post_status( APPTHEMES_ORDER_PAID, array(
		'public' => true,
		'show_in_admin_all_list' => true,
		'show_in_admin_status_list' => true,
		'label_count' => _n_noop( 'Paid <span class="count">(%s)</span>', 'Paid <span class="count">(%s)</span>', APP_TD ),
	));

	register_post_status( APPTHEMES_ORDER_REFUNDED, array(
		'public' => true,
		'show_in_admin_all_list' => true,
		'show_in_admin_status_list' => true,
		'label_count' => _n_noop( 'Refunded <span class="count">(%s)</span>', 'Refunded <span class="count">(%s)</span>', APP_TD ),
	));

}