| Server IP : 62.60.133.156 / Your IP : 216.73.217.51 Web Server : LiteSpeed System : Linux linux24.centraldnserver.com 4.18.0-553.141.2.lve.el8.x86_64 #1 SMP Wed Jul 8 16:10:02 UTC 2026 x86_64 User : mimradmin ( 1166) PHP Version : 7.4.33 Disable Function : show_source, system, shell_exec, passthru, exec, popen, proc_open MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/mimradmin/www/wp-content/plugins/wp-ultimate-csv-importer/controllers/ |
Upload File : |
<?php
/**
* WP Ultimate CSV Importer plugin file.
*
* Copyright (C) 2010-2020, Smackcoders Inc - info@smackcoders.com
*/
namespace Smackcoders\FCSV;
if ( ! defined( 'ABSPATH' ) )
exit; // Exit if accessed directly
/**
* Class SendPassword
* @package Smackcoders\FCSV
*/
class SendPassword {
protected static $instance = null,$plugin;
public static function getInstance() {
if ( null == self::$instance ) {
self::$instance = new self;
self::$instance->doHooks();
}
return self::$instance;
}
/**
* SendPassword constructor.
*/
public function __construct() {
$plugin = Plugin::getInstance();
}
/**
* SendPassword hooks.
*/
public function doHooks(){
add_action('wp_ajax_settings_options', array($this,'settingsOptions'));
add_action('wp_ajax_get_options', array($this,'showOptions'));
add_action('wp_ajax_get_setting', array($this,'showsetting'));
}
/**
* Function for save settings options
*
*/
public function settingsOptions() {
check_ajax_referer('smack-ultimate-csv-importer', 'securekey');
if(is_user_logged_in() && current_user_can('create_users')){
$ucisettings = get_option('sm_uci_pro_settings');
$option = sanitize_text_field($_POST['option']);
$value = sanitize_text_field($_POST['value']);
foreach ($ucisettings as $key => $val) {
$settings[$key] = $val;
}
$settings[$option] = $value;
update_option('sm_uci_pro_settings', $settings);
$result['success'] = true;
$result['option'] = $value === 'true' ? true : false;
echo wp_json_encode($result);
wp_die();
}
else {
$result['success'] = false;
echo wp_json_encode($result);
wp_die();
}
}
public function showsetting(){
$result['setting'] = get_option('openAI_settings');
echo wp_json_encode($result);
wp_die();
}
/**
* Function for show settings options
*
*/
public function showOptions() {
check_ajax_referer('smack-ultimate-csv-importer', 'securekey');
if (isset($_POST['prefixValue'])) {
$prefixValue = sanitize_text_field($_POST['prefixValue']);
}
if(!empty($prefixValue)){
update_option('openAI_settings', $prefixValue);
}
if(!empty($prefixValue)){
if($prefixValue == 'delete'){
delete_option('openAI_settings');
}
}
$ucisettings = get_option('sm_uci_pro_settings');
foreach ($ucisettings as $key => $val) {
$settings[$key] = json_decode($val);
}
$result['options'] = $settings;
echo wp_json_encode($result);
wp_die();
}
}