PageRenderTime 48ms CodeModel.GetById 21ms RepoModel.GetById 0ms app.codeStats 0ms

/moodle/question/category_form.php

https://bitbucket.org/geek745/moodle-db2
PHP | 39 lines | 29 code | 7 blank | 3 comment | 1 complexity | 8affd59c57edb0184ac0f9545a62b1c6 MD5 | raw file
Possible License(s): GPL-2.0, LGPL-2.1, BSD-3-Clause, LGPL-2.0
  1. <?php // $Id$
  2. require_once($CFG->libdir.'/formslib.php');
  3. class question_category_edit_form extends moodleform {
  4. function definition() {
  5. global $CFG;
  6. $mform =& $this->_form;
  7. $contexts = $this->_customdata['contexts'];
  8. $currentcat = $this->_customdata['currentcat'];
  9. //--------------------------------------------------------------------------------
  10. $mform->addElement('header', 'categoryheader', get_string('addcategory', 'quiz'));
  11. $questioncategoryel = $mform->addElement('questioncategory', 'parent', get_string('parent', 'quiz'),
  12. array('contexts'=>$contexts, 'top'=>true, 'currentcat'=>$currentcat, 'nochildrenof'=>$currentcat));
  13. $mform->setType('parent', PARAM_SEQUENCE);
  14. if (question_is_only_toplevel_category_in_context($currentcat)){
  15. $mform->hardFreeze('parent');
  16. }
  17. $mform->setHelpButton('parent', array('categoryparent', get_string('parent', 'quiz'), 'question'));
  18. $mform->addElement('text','name', get_string('name'),'maxlength="254" size="50"');
  19. $mform->setDefault('name', '');
  20. $mform->addRule('name', get_string('categorynamecantbeblank', 'quiz'), 'required', null, 'client');
  21. $mform->setType('name', PARAM_MULTILANG);
  22. $mform->addElement('textarea', 'info', get_string('categoryinfo', 'quiz'), array('rows'=> '10', 'cols'=>'45'));
  23. $mform->setDefault('info', '');
  24. $mform->setType('info', PARAM_MULTILANG);
  25. //--------------------------------------------------------------------------------
  26. $this->add_action_buttons(false, get_string('addcategory', 'quiz'));
  27. //--------------------------------------------------------------------------------
  28. $mform->addElement('hidden', 'id', 0);
  29. $mform->setType('id', PARAM_INT);
  30. }
  31. }
  32. ?>