Your IP : 216.73.217.77


Current Path : /home/users/unlimited/www/facebook.codeskitter.site/api/v2/endpoints/
Upload File :
Current File : /home/users/unlimited/www/facebook.codeskitter.site/api/v2/endpoints/notifications.php

<?php

$response_data = array(
    'api_status' => 400
);

$required_fields =  array(
                        'delete',
                    );
if (!empty($_POST['type']) && in_array($_POST['type'], $required_fields)) {
    if ($_POST['type'] == 'delete') {
    	if (empty($_POST['id']) || !is_numeric($_POST['id']) || $_POST['id'] < 1) {
            $error_code    = 7;
            $error_message = 'id must be numeric and greater than 0';
        }

        if (empty($error_code)) {
        	$db->where('id',Wo_Secure($_POST['id']))->delete(T_NOTIFICATION);
        	$response_data = array(
                'api_status' => 200,
                'message_data' => 'notification delete successfully'
            );
        }
    }
}
else{
    $error_code    = 4;
    $error_message = 'type can not be empty';
}