public function saveContactInfoAction()
 {
     $data = $_POST;
     $token = isset($data['TOKEN']) ? trim($data['TOKEN']) : null;
     if (!$token) {
         return ['STATUS_CODE' => STATUS_CODE_BAD_REQUEST, 'DATA' => buckys_api_get_error_result('Api token should not be blank')];
     }
     if (!($userID = BuckysUsersToken::checkTokenValidity($token, "api"))) {
         return ['STATUS_CODE' => STATUS_CODE_UNAUTHORIZED, 'DATA' => buckys_api_get_error_result('Api token is not valid.')];
     }
     $header = [];
     $header['email'] = $data['email'];
     $header['work_phone'] = $data['work_phone'];
     $header['home_phone'] = $data['home_phone'];
     $header['cell_phone'] = $data['cell_phone'];
     $header['email_visibility'] = $data['email_visibility'];
     $header['home_phone_visibility'] = $data['home_phone_visibility'];
     $header['work_phone_visibility'] = $data['work_phone_visibility'];
     $header['cell_phone_visibility'] = $data['cell_phone_visibility'];
     $count = isset($data['COUNT']) ? $data['COUNT'] : 0;
     $info = [];
     for ($i = 0; $i < $count; $i++) {
         $row = [];
         $row['name'] = $data['CONTACT_NAME' . $i];
         $row['type'] = $data['CONTACT_TYPE' . $i];
         $row['visibility'] = $data['VISIBILITY' . $i];
         $info[] = $row;
     }
     if (BuckysUser::updateUserFields($userID, $header) && BuckysUser::updateUserMessengerInfo($userID, $info)) {
         return ['STATUS_CODE' => STATUS_CODE_OK, 'DATA' => ['STATUS' => 'SUCCESS']];
     } else {
         return ['STATUS_CODE' => STATUS_CODE_UNAUTHORIZED, 'DATA' => buckys_api_get_error_result('There was an error to saving your information.')];
     }
     exit;
 }
    if ($_POST['action'] == 'save_address') {
        $data = ['address1' => $_POST['address1'], 'address2' => $_POST['address2'], 'city' => $_POST['city'], 'state' => $_POST['state'], 'zip' => $_POST['zip'], 'country' => $_POST['country'], 'address_visibility' => $_POST['address_visibility']];
        //Update User Phone numbers
        if (BuckysUser::updateUserFields($userID, $data)) {
            echo 'Success';
        } else {
            echo $db->getLastError();
        }
        exit;
    }
    //Save Contact Info
    if ($_POST['action'] == 'save_messenger') {
        $data = [];
        for ($i = 0; $i < count($_POST['username']); $i++) {
            $data[] = ['name' => $_POST['username'][$i], 'type' => $_POST['type'][$i], 'visibility' => $_POST['visibility'][$i]];
        }
        //Update User Phone numbers
        if (BuckysUser::updateUserMessengerInfo($userID, $data)) {
            echo 'Success';
        } else {
            echo $db->getLastError();
        }
        exit;
    }
}
buckys_enqueue_stylesheet('account.css');
buckys_enqueue_stylesheet('info.css');
buckys_enqueue_javascript('info.js');
$TNB_GLOBALS['content'] = 'info_contact';
$TNB_GLOBALS['title'] = "Contact Info - " . TNB_SITE_NAME;
require DIR_FS_TEMPLATE . $TNB_GLOBALS['template'] . "/" . $TNB_GLOBALS['layout'] . ".php";