$action, 'user_id' => $user, 'action_code' => $code, ]); // Return the code return $code; } // Checking if a code is still valid public static function validate($action, $code, $user = 0, $invalidate = true) { // Fetch the code from the db $get = Database::count('actioncodes', [ 'code_action' => [$action, '='], 'action_code' => [$code, '='], 'user_id' => [$user, '='], ]); // Invalidate the code if requested if ($invalidate) { self::invalidate($code); } // Return the result return $get[0] > 0; } // Make a code invalid public static function invalidate($code) { Database::delete('actioncodes', [ 'code_action' => [$code, '='], ]); } }