getQuery(true); // Build the query. $query->select('COUNT(*)') ->from('#__club_users') ->where('user = ' . $db->quote($value)); // Get the extra field check attribute. $userId = $input->get('id'); $query->where($db->quoteName('id') . ' <> ' . (int) $userId); // Set and query the database. $db->setQuery($query); $duplicate = (bool) $db->loadResult(); if ($duplicate) { return false; } return true; } }