/** * Plugin: Google Login Blacklist Check (MySQLi - Linkeei) * Description: Blocks Google login if email is blacklisted (from DB). * Author: Linkeei Dev */ add_hook('james_hook_before_register', function($data) { global $wo; $marker = $data['marker'] ?? ''; $user = $data['user_data'] ?? []; if ($marker !== 'login-with-google') { return; } $email = strtolower(trim($user['email'] ?? '')); if (empty($email)) { throw new Exception("Login blocked: Email is missing."); } $conn = $wo['sqlConnect']; // Use Linkeei's connection // Escape and prepare the query $email_escaped = mysqli_real_escape_string($conn, $email); $query = "SELECT COUNT(*) as count FROM JAMES_blacklisted_emails WHERE LOWER(email) = LOWER('$email_escaped')"; $result = mysqli_query($conn, $query); if ($result) { $row = mysqli_fetch_assoc($result); if ((int)$row['count'] > 0) { throw new Exception("Login blocked: Your email is blacklisted."); } } else { throw new Exception("Login blocked: DB error."); } }); Linkeei
Linkeei Official    compartió un  publicacion
4 años

Linkeei – লিংকি থেকে আয়
Linkeei – লিংকি app বা website এ বিভিন্ন ধরনের activity করার মাধ্যমে আপনি point income করতে পারেন এবং সেই পয়েন্ট কে টাকায় convert করে bKash এ নিতে পারবেন।

কি করলে কত পয়েন্ট
React on post (Like, Wonder, Reaction, Share) = 1 point
Comment on post = 2 points
Create a new post = 5 points
Create a new blog post = 15 points
Maximum points per day = 100 points

পয়েন্ট এবং টাকার পরিমান যে কোন সময় পরিবর্তন হতে পারে।
কত পয়েন্ট জমা হল সেতা দেখার জন্য এই লিংকে যানঃ https://linkeei.com/setting/my_points
কত টাকা জমা হল সেটা দেখার জন্য এই লিঙ্কে যানঃ https://linkeei.com/setting/payments
কোন ধরনের স্পামিং বা দুর্নীতি করে পয়েন্ট নেওয়ার চেষ্টা করলে id বাতিল হয়ে যাবে
Linkeei app বা website এর ক্ষেত্রে এই পয়েন্ট প্রযোজ্য। Linkeei Facebook page, group বা অন্য কোথাও এই পয়েন্ট প্রযোজ্য নয়।
কোন জিজ্ঞাসা থাকলে Linkeei এর Facebook page এ inbox করুনঃ https://www.facebook.com/linkeeiofficial
#linkeei

image