Файловый менеджер - Редактировать - /home/ephorei/www/wp-content/plugins/suretriggers/src/Integrations/jetpack-crm/actions/create-contact.php
Назад
<?php /** * CreateContact. * php version 5.6 * * @category CreateContact * @package SureTriggers * @author BSF <username@example.com> * @license https://www.gnu.org/licenses/gpl-3.0.html GPLv3 * @link https://www.brainstormforce.com/ * @since 1.0.0 */ namespace SureTriggers\Integrations\JetpackCRM\Actions; use Exception; use SureTriggers\Integrations\AutomateAction; use SureTriggers\Integrations\JetpackCRM\JetpackCRM; use SureTriggers\Traits\SingletonLoader; /** * CreateContact * * @category CreateContact * @package SureTriggers * @author BSF <username@example.com> * @license https://www.gnu.org/licenses/gpl-3.0.html GPLv3 * @link https://www.brainstormforce.com/ * @since 1.0.0 */ class CreateContact extends AutomateAction { /** * Integration type. * * @var string */ public $integration = 'JetpackCRM'; /** * Action name. * * @var string */ public $action = 'jetpack_crm_create_contact'; use SingletonLoader; /** * Register an action. * * @param array $actions actions. * @return array */ public function register( $actions ) { $actions[ $this->integration ][ $this->action ] = [ 'label' => __( 'Create Contact', 'suretriggers' ), 'action' => $this->action, 'function' => [ $this, 'action_listener' ], ]; return $actions; } /** * Action listener. * * @param int $user_id user_id. * @param int $automation_id automation_id. * @param array $fields fields. * @param array $selected_options selected_options. * * @return array * * @throws Exception Exception. */ public function _action_listener( $user_id, $automation_id, $fields, $selected_options ) { $contact_details = []; foreach ( $selected_options as $label => $value ) { if ( 'runningTestAction' === $label ) { continue; } if ( 'tags' === $label || 'companies' === $label ) { $contact_details['data'][ $label ] = ! empty( $value ) ? [ sanitize_text_field( $value ) ] : []; } else { $contact_details['data'][ $label ] = ! empty( $value ) ? sanitize_text_field( $value ) : ''; } } global $zbs; $contact_id = $zbs->DAL->contacts->addUpdateContact( $contact_details ); // phpcs:ignore if ( ! $contact_id ) { throw new Exception( 'Something went wrong while creating contact.' ); } return JetpackCRM::get_contact_context( $contact_id ); } } CreateContact::get_instance();
| ver. 1.4 |
Github
|
.
| PHP 8.0.30 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка