- WordPress core y plugins - Tema Twenty Twenty-Four configurado - Plugin allow-unfiltered-html.php simplificado - .gitignore configurado para excluir wp-config.php y uploads 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
93 lines
2.5 KiB
PHP
Executable File
93 lines
2.5 KiB
PHP
Executable File
<?php
|
|
|
|
class BWFAN_API_Get_Contact_Funnels extends BWFAN_API_Base {
|
|
public static $ins;
|
|
|
|
public static function get_instance() {
|
|
if ( null === self::$ins ) {
|
|
self::$ins = new self();
|
|
}
|
|
|
|
return self::$ins;
|
|
}
|
|
|
|
public function __construct() {
|
|
parent::__construct();
|
|
$this->method = WP_REST_Server::READABLE;
|
|
$this->route = '/v3/contacts/(?P<contact_id>[\\d]+)/funnels';
|
|
}
|
|
|
|
public function default_args_values() {
|
|
return array(
|
|
'contact_id' => '',
|
|
);
|
|
}
|
|
|
|
public function process_api_call() {
|
|
/** checking if search present in params **/
|
|
|
|
$contact_id = $this->get_sanitized_arg( 'contact_id', 'key' );
|
|
$offset = $this->get_sanitized_arg( 'offset', 'key' );
|
|
$limit = $this->get_sanitized_arg( 'limit', 'key' );
|
|
|
|
$offset = empty( $offset ) ? $this->pagination->offset : $offset;
|
|
$limit = empty( $offset ) ? $this->pagination->limit : $limit;
|
|
|
|
if ( empty( $contact_id ) ) {
|
|
return $this->error_response( __( 'Contact ID is mandatory', 'wp-marketing-automations' ) );
|
|
}
|
|
|
|
$contact = new BWFCRM_Contact( $contact_id );
|
|
|
|
if ( ! $contact->is_contact_exists() ) {
|
|
$this->response_code = 404;
|
|
|
|
/* translators: 1: Contact ID */
|
|
|
|
return $this->error_response( sprintf( __( 'No contact found with given id #%1$d', 'wp-marketing-automations' ), $contact_id ) );
|
|
}
|
|
|
|
$contacts_funnel = array();
|
|
$contacts_funnel['funnel'] = $contact->get_contact_funnels_array();
|
|
|
|
if ( function_exists( 'WFACP_Core' ) ) {
|
|
$contacts_funnel['funnel']['checkout'] = [];
|
|
}
|
|
|
|
if ( function_exists( 'WFOB_Core' ) ) {
|
|
$contacts_funnel['funnel']['order_bump'] = [];
|
|
}
|
|
|
|
if ( function_exists( 'WFOPP_Core' ) ) {
|
|
$optin_etries = $contact->get_contact_optin_array();
|
|
|
|
if ( is_array( $optin_etries ) && ! empty( $optin_etries ) ) {
|
|
/** Add email in optin entry */
|
|
$optin_etries = array_map( function ( $optin ) {
|
|
$entry = json_decode( $optin['entry'], true );
|
|
if ( ! empty( $optin['email'] ) && ! empty( $entry ) ) {
|
|
$entry['optin_email'] = $optin['email'];
|
|
}
|
|
$optin['entry'] = wp_json_encode( $entry );
|
|
|
|
return $optin;
|
|
}, $optin_etries );
|
|
}
|
|
|
|
$contacts_funnel['funnel']['optin'] = $optin_etries;
|
|
}
|
|
|
|
if ( function_exists( 'WFOCU_Core' ) ) {
|
|
$contacts_funnel['funnel']['upsells'] = [];
|
|
}
|
|
|
|
$this->response_code = 200;
|
|
$success_message = __( 'Contacts funnels', 'wp-marketing-automations' );
|
|
|
|
return $this->success_response( $contacts_funnel, $success_message );
|
|
}
|
|
}
|
|
|
|
|
|
BWFAN_API_Loader::register( 'BWFAN_API_Get_Contact_Funnels' );
|