📁 File Manager Pro
v10.0.3 | PHP: 8.2.31
Server: LiteSpeed
2026-07-03 07:17:56
📂
/ (Root)
/
home
/
orkouolp
/
web
/
orkofarms.com
/
wp-content
/
plugins
/
kirki
/
includes
/
Ajax
📍 /home/orkouolp/web/orkofarms.com/wp-content/plugins/kirki/includes/Ajax
🔄 Refresh
✏️
Editing: Walkthrough.php
Writable
<?php /** * Walkthrough or onboarding * * @package kirki */ namespace Kirki\Ajax; if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } use Kirki\HelperFunctions; /** * Walkthrough API Class */ class Walkthrough { /** * Get walkthrough state * * @return void wp_send_json. */ public static function get_walkthrough_state() { $user_id = get_current_user_id(); $user_meta = get_user_meta( $user_id, KIRKI_USER_WALKTHROUGH_SHOWN_META_KEY, true ); if ( $user_meta ) { wp_send_json( true ); } else { wp_send_json( false ); } die(); } /** * Set walkthrough state * * @return void wp_send_json. */ public static function set_walkthrough_state() { //phpcs:ignore WordPress.Security.NonceVerification.Missing,WordPress.Security.NonceVerification.Recommended,WordPress.Security.ValidatedSanitizedInput.MissingUnslash,WordPress.Security.ValidatedSanitizedInput.InputNotSanitized $walkthrough_state = HelperFunctions::sanitize_text( isset( $_POST['walkthrough-shown-state'] ) ? $_POST['walkthrough-shown-state'] : null ); $user_id = get_current_user_id(); update_user_meta( $user_id, KIRKI_USER_WALKTHROUGH_SHOWN_META_KEY, $walkthrough_state ); wp_send_json( true ); die(); } }
💾 Save Changes
❌ Cancel