/**
  * Constructor
  *
  * @param string $name the name of the filter instance
  * @param boolean $advanced advanced form element flag
  * @param mixed $default option
  */
 function __construct($name, $advanced, $default = null)
 {
     $label = get_string($name, 'mod_hotpot');
     $options = hotpot::available_statuses_list();
     parent::__construct($name, $label, $advanced, '', $options, $default);
 }