OwlCyberSecurity - MANAGER
Edit File: set-metavalue.php
<?php /** * SetMetaValue. * php version 5.6 * * @category SetMetaValue * @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 */ use SureTriggers\Integrations\AutomateAction; use SureTriggers\Traits\SingletonLoader; /** * SetMetaValue * * @category SetMetaValue * @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 SetMetaValue extends AutomateAction { /** * Integration type. * * @var string */ public $integration = 'MetaBox'; /** * Action name. * * @var string */ public $action = 'set_metavalue'; use SingletonLoader; /** * Register a action. * * @param array $actions actions. * @return array */ public function register( $actions ) { $actions[ $this->integration ][ $this->action ] = [ 'label' => __( 'Get Object Fields', '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 selectedOptions. * @psalm-suppress UndefinedMethod * @throws Exception Exception. * * @return array|bool|void */ public function _action_listener( $user_id, $automation_id, $fields, $selected_options ) { $object_id = $selected_options['object_id']; $field_id = $selected_options['field_id']; $value = $selected_options['meta_value']; if ( function_exists( 'rwmb_set_meta' ) ) { rwmb_set_meta( $object_id, $field_id, $value ); if ( function_exists( 'rwmb_get_value' ) ) { $values = rwmb_get_value( $field_id, '', $object_id ); $response = [ $field_id => $values, 'object_id' => $object_id, ]; return $response; } } else { $response = [ 'status' => esc_attr__( 'Error', 'suretriggers' ), 'message' => esc_attr__( 'Function rwmb_set_meta not exists. Please make sure the Metabox plugin is installed and active.', 'suretriggers' ), ]; return $response; } } } SetMetaValue::get_instance();