| Server IP : 146.59.209.152 / Your IP : 216.73.216.46 Web Server : Apache System : Linux webm005.cluster131.gra.hosting.ovh.net 5.15.167-ovh-vps-grsec-zfs-classid #1 SMP Tue Sep 17 08:14:20 UTC 2024 x86_64 User : infrafs ( 43850) PHP Version : 8.2.29 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/infrafs/www/wp-content/plugins/migrate-guru/callback/wings/ |
Upload File : |
<?php
if (!defined('ABSPATH')) exit;
if (!class_exists('BVBrandCallback')) :
class BVBrandCallback extends BVCallbackBase {
public $settings;
const BRAND_WING_VERSION = 1.0;
public function __construct($callback_handler) {
$this->settings = $callback_handler->settings;
}
public function process($request) {
$bvinfo = new MGInfo($this->settings);
$option_name = $bvinfo->brand_option;
$params = $request->params;
switch($request->method) {
case 'setbrand':
$brandinfo = array();
if (array_key_exists('hide', $params)) {
$brandinfo['hide'] = $params['hide'];
} else {
$brandinfo['name'] = $params['name'];
$brandinfo['title'] = $params['title'];
$brandinfo['description'] = $params['description'];
$brandinfo['pluginuri'] = $params['pluginuri'];
$brandinfo['author'] = $params['author'];
$brandinfo['authorname'] = $params['authorname'];
$brandinfo['authoruri'] = $params['authoruri'];
$brandinfo['menuname'] = $params['menuname'];
$brandinfo['logo'] = $params['logo'];
$brandinfo['webpage'] = $params['webpage'];
$brandinfo['appurl'] = $params['appurl'];
if (array_key_exists('hide_plugin_details', $params)) {
$brandinfo['hide_plugin_details'] = $params['hide_plugin_details'];
}
if (array_key_exists('hide_from_menu', $params)) {
$brandinfo['hide_from_menu'] = $params['hide_from_menu'];
}
}
$this->settings->updateOption($option_name, $brandinfo);
$resp = array("setbrand" => $this->settings->getOption($option_name));
break;
case 'rmbrand':
$this->settings->deleteOption($option_name);
$resp = array("rmbrand" => !$this->settings->getOption($option_name));
break;
default:
$resp = false;
}
return $resp;
}
}
endif;