Файловый менеджер - Редактировать - /home/ephorei/www/wp-content/plugins/suretriggers/src/Integrations/mail-mint/actions/delete-contact.php
Назад
<?php /** * DeleteContact. * php version 5.6 * * @category DeleteContact * @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\MailMint\Actions; use Exception; use SureTriggers\Integrations\AutomateAction; use SureTriggers\Traits\SingletonLoader; use Mint\MRM\DataBase\Models\ContactModel; /** * DeleteContact * * @category DeleteContact * @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 DeleteContact extends AutomateAction { /** * Integration type. * * @var string */ public $integration = 'MailMint'; /** * Action name. * * @var string */ public $action = 'mail_mint_delete_contact'; use SingletonLoader; /** * Register an action. * * @param array $actions actions. * @return array */ public function register( $actions ) { $actions[ $this->integration ][ $this->action ] = [ 'label' => __( 'Delete 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 bool|void * * @throws Exception Exception. */ public function _action_listener( $user_id, $automation_id, $fields, $selected_options ) { if ( ! class_exists( 'Mint\MRM\DataBase\Models\ContactModel' ) ) { return; } if ( empty( $selected_options['email'] ) ) { return; } $email = $selected_options['email']; $contact = ContactModel::get_contact_by_email( $email ); if ( $contact ) { $deleted = ContactModel::destroy( $contact['id'] ); } else { throw new Exception( 'There is no contact with provided email.' ); } return true; } } DeleteContact::get_instance();
| ver. 1.4 |
Github
|
.
| PHP 8.0.30 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка