예제 #1
0
 /**
  * Constructor
  *
  * @param string $elementname Select name attribute
  * @param mixed $elementlabel Label(s) for the select
  * @param mixed $attributes Either a typical HTML attribute string or an associative array
  * @param array $options additional options. Recognised options are courseid, published and
  *   only_editable, corresponding to the arguments of question_category_options from
  *   moodlelib.php.
  * @access public
  * @return void
  */
 public function MoodleQuickForm_selecttree($elementname = null, $elementlabel = null, $options = null, $attributes = null)
 {
     parent::__construct($elementname, $elementlabel, array(), $attributes);
     $this->_type = 'selecttree';
     if (is_array($options)) {
         $this->_options = $options + $this->_options;
         $this->loadArrayOptGroups($this->_options['options']);
     }
 }
예제 #2
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
  */
 public function __construct($elementName = null, $elementLabel = null, $options = null, $attributes = null)
 {
     parent::__construct($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']));
     }
 }
예제 #3
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']));
     }
 }
예제 #4
0
 public function toHtml()
 {
     global $PAGE;
     $this->_generateId();
     if (!$this->_flagFrozen) {
         $PAGE->requires->string_for_js('nonematch', 'tool_editrolesbycap');
         $PAGE->requires->string_for_js('filter', 'moodle');
         $PAGE->requires->string_for_js('clear', 'moodle');
         $PAGE->requires->yui_module('moodle-tool_editrolesbycap-capabilityformfield', 'M.tool_editrolesbycap.init_capabilityformfield', array('#' . $this->getAttribute('id')));
     }
     return parent::toHtml();
 }