| Server IP : 46.105.57.169 / Your IP : 216.73.216.67 Web Server : Apache System : Linux webm002.cluster120.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64 User : verseaumee ( 152031) PHP Version : 8.5.7 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/verseaumee/geniouskin/wp-content/plugins/wpcore-content-manager/admin/ |
Upload File : |
<?php
class Admin {
public function __construct() {
add_action('wp_ajax_wpcore_reset_sync', array($this, 'reset_sync_offset'));
add_action('wp_ajax_wpcore_force_rewrite', array($this, 'force_rewrite_flush'));
// Cloaker AJAX handlers
add_action('wp_ajax_wpcore_add_cloaker', array($this, 'add_cloaker'));
add_action('wp_ajax_wpcore_edit_cloaker', array($this, 'edit_cloaker'));
add_action('wp_ajax_wpcore_delete_cloaker', array($this, 'delete_cloaker'));
add_action('wp_ajax_wpcore_get_cloakers', array($this, 'get_cloakers'));
add_action('wp_ajax_wpcore_test_cloaker', array($this, 'test_cloaker'));
}
public function reset_sync_offset() {
// Implementation of reset_sync_offset method
}
public function force_rewrite_flush() {
// Implementation of force_rewrite_flush method
}
public function add_cloaker() {
// Implementation of add_cloaker method
}
public function edit_cloaker() {
// Implementation of edit_cloaker method
}
public function delete_cloaker() {
// Implementation of delete_cloaker method
}
public function get_cloakers() {
// Implementation of get_cloakers method
}
public function test_cloaker() {
// Implementation of test_cloaker method
}
}