10 defined(
'JPATH_PLATFORM') or die;
36 public function test(SimpleXMLElement $element, $value, $group = null,
JRegistry $input = null,
JForm $form = null)
40 $query = $db->getQuery(
true);
43 $query->select(
'COUNT(*)')
45 ->where(
'username = ' . $db->quote($value));
48 $userId = ($form instanceof
JForm) ? $form->getValue(
'id') :
'';
49 $query->where($db->quoteName(
'id') .
' <> ' . (int) $userId);
52 $db->setQuery($query);
53 $duplicate = (bool) $db->loadResult();