예제 #1
0
 /**
  * Constructor
  *
  * @param string $elementName Select name attribute
  * @param mixed $elementLabel Label(s) for the select
  * @param array $options additional options. Recognised options are courseid, published and
  *              only_editable, corresponding to the arguments of question_category_options
  *              from moodlelib.php.
  * @param mixed $attributes Either a typical HTML attribute string or an associative array
  */
 function MoodleQuickForm_questioncategory($elementName = null, $elementLabel = null, $options = null, $attributes = null)
 {
     MoodleQuickForm_selectgroups::MoodleQuickForm_selectgroups($elementName, $elementLabel, array(), $attributes);
     $this->_type = 'questioncategory';
     if (is_array($options)) {
         $this->_options = $options + $this->_options;
         $this->loadArrayOptGroups(question_category_options($this->_options['contexts'], $this->_options['top'], $this->_options['currentcat'], false, $this->_options['nochildrenof']));
     }
 }