File manager - Edit - /home/proidvn/me.proid.vn/wp-content/plugins/jetformbuilder/includes/admin/tabs-handlers/base-handler.php
Back
<?php namespace Jet_Form_Builder\Admin\Tabs_Handlers; // If this file is called directly, abort. use JFB_Components\Repository\Repository_Item_Instance_Trait; if ( ! defined( 'WPINC' ) ) { die; } abstract class Base_Handler implements Repository_Item_Instance_Trait { const PREFIX = 'jet_form_builder_settings__'; abstract public function slug(); abstract public function on_get_request(); abstract public function on_load(); public function after_install() { add_action( "wp_ajax_jet_fb_save_tab__{$this->slug()}", array( $this, 'on_raw_request' ) ); add_action( 'jet-fb/admin-pages/before-assets/jfb-settings', array( $this, 'before_assets' ) ); } public function on_raw_request() { if ( empty( $_POST['_nonce'] ) || ! wp_verify_nonce( sanitize_key( $_POST['_nonce'] ?? '' ), 'jfb-settings' ) || ! current_user_can( 'manage_options' ) ) { $this->send_response( false ); return; } $this->on_get_request(); } /** * @return array * @since 3.1.0 */ public function on_editor_load(): array { return $this->get_options(); } /** * Define this, if you want to save options * in Tab_Handler_Manager::$_tabs_options. * * Then you can get this data via * $this->get_global_options() * * @return array */ public function save_global_default() { return array(); } public function is_visible( $advanced_options ) { return true; } public function get_options( $if_empty = array() ) { $response = get_option( $this->option_name(), false ); $response = $response ? json_decode( $response, true ) : array(); return array_merge( $if_empty, $response ); } public function update_options( $options ) { $json_options = wp_json_encode( $options ); $prev_value = get_option( $this->option_name(), false ); if ( $prev_value === $json_options ) { return true; } $prev_options = json_decode( $prev_value, true ) ?: array(); return update_option( $this->option_name(), wp_json_encode( array_merge( $prev_options, $options ) ), false ); } public function before_assets() { } public function option_name() { return self::PREFIX . $this->slug(); } public function get_success_response_data() { return array( 'message' => __( 'Saved successfully!', 'jet-form-builder' ), ); } public function get_failed_response_data() { return array( 'message' => __( 'Unsuccessful save.', 'jet-form-builder' ), ); } public function send_response( $result ) { if ( $result ) { wp_send_json_success( $this->get_success_response_data() ); } wp_send_json_error( $this->get_failed_response_data() ); } public function rep_item_id() { return $this->slug(); } }
| ver. 1.4 |
Github
|
.
| PHP 8.0.30 | Generation time: 0.16 |
proxy
|
phpinfo
|
Settings