/**
  * Check for the entry
  */
 public function validate()
 {
     parent::validate();
     if (!is_array($this->varValue) || count($this->varValue) < 1) {
         $this->addError(sprintf($GLOBALS['TL_LANG']['tl_user']['chooseAtLeastOne'], $this->strLabel));
     }
 }