| Server IP : 185.143.233.238 / Your IP : 185.215.232.195 Web Server : nginx/1.22.1 System : Linux server2065 6.1.0-35-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.137-1 (2025-05-07) x86_64 User : www-data ( 33) PHP Version : 8.2.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/www/bcandle/wp-content/plugins/jet-engine/includes/modules/forms/tabs/ |
Upload File : |
<?php
namespace Jet_Engine\Modules\Forms\Tabs;
abstract class Base_Form_Tab {
public $prefix = 'jet_engine_form_settings__';
abstract public function slug();
abstract public function on_get_request();
abstract public function on_load();
public function get_options( $default = array() ) {
$response = get_option( $this->prefix . $this->slug(), false );
$response = $response
? json_decode( $response, true )
: array();
return array_merge( $default, $response );
}
public function update_options( $options ) {
$options = json_encode( $options );
return update_option( $this->prefix . $this->slug(), $options );
}
public function render_assets() {
}
public function verify_request() {
if ( ! current_user_can( 'manage_options' ) ) {
wp_send_json_error( array( 'message' => esc_html__( 'Access denied', 'jet-engine' ) ) );
}
$nonce = ! empty( $_REQUEST['_nonce'] ) ? $_REQUEST['_nonce'] : false;
if ( ! $nonce || ! wp_verify_nonce( $nonce, jet_engine()->dashboard->get_nonce_action() ) ) {
wp_send_json_error( array( 'message' => esc_html__( 'Nonce validation failed', 'jet-engine' ) ) );
}
}
}