uawdijnntqw1x1x1
IP : 216.73.216.110
Hostname : panel.codeskitter.com
Kernel : Linux panel.codeskitter.com 6.8.0-100-generic #100-Ubuntu SMP PREEMPT_DYNAMIC Tue Jan 13 16:40:06 UTC 2026 x86_64
Disable Function : apache_child_terminate, apache_note, apache_setenv, define_syslog_variables, dl, link, opcache_get_status, openlog, pcntl_exec, pcntl_fork, pcntl_setpriority, popen, posix_getpwuid, posix_kill, posix_mkfifo, posix_setpgid, posix_setsid, posix_setuid
OS : Linux
PATH:
/
home
/
users
/
unlimited
/
www
/
facebook.codeskitter.site
/
api
/
v2
/
endpoints
/
block-user.php
/
/
<?php // +------------------------------------------------------------------------+ // | @author Deen Doughouz (DoughouzForest) // | @author_url 1: http://www.wowonder.com // | @author_url 2: http://codecanyon.net/user/doughouzforest // | @author_email: wowondersocial@gmail.com // +------------------------------------------------------------------------+ // | WoWonder - The Ultimate Social Networking Platform // | Copyright (c) 2018 WoWonder. All rights reserved. // +------------------------------------------------------------------------+ $response_data = array( 'api_status' => 200, 'block_status' => 'invalid' ); if (empty($_POST['user_id'])) { $error_code = 3; $error_message = 'user_id (POST) is missing'; } if (empty($_POST['block_action'])) { $error_code = 4; $error_message = 'block_action (POST) is missing'; } else { if (!in_array($_POST['block_action'], array('block','un-block'))) { $error_code = 5; $error_message = 'Incorrect value for (block_action), allowed: block|un-block'; } } if (empty($error_code)) { $recipient_id = Wo_Secure($_POST['user_id']); $recipient_data = Wo_UserData($recipient_id); if (empty($recipient_data)) { $error_code = 6; $error_message = 'Recipient user not found'; } else { $is_blocked = Wo_IsBlocked($recipient_id); if ($_POST['block_action'] == 'block' && $is_blocked === false && Wo_IsAdmin($recipient_id) === false) { $block = Wo_RegisterBlock($recipient_id); if ($block) { $response_data = array( 'api_status' => 200, 'block_status' => 'blocked' ); } } else if ($_POST['block_action'] == 'un-block' && $is_blocked === true) { $unblock = Wo_RemoveBlock($recipient_id); if ($unblock) { $response_data = array( 'api_status' => 200, 'block_status' => 'un-blocked' ); } } } }
/home/users/unlimited/www/facebook.codeskitter.site/api/v2/endpoints/block-user.php