This question type is compatible with Moodle 2.1+.
To install using git, type this command in the root of your Moodle install
- git clone git://github.com/moodleou/moodle-qtype_gapselect.git question/type/gapselect
+ git clone -b MOODLE_21_STABLE git://github.com/moodleou/moodle-qtype_gapselect.git question/type/gapselect
Then add question/type/gapselect to your git ignore.
Alternatively, download the zip from
- https://github.com/moodleou/moodle-qtype_gapselect/zipball/master
-unzip it into the question/type folder, and then rename the new folder to
-gapselect.
-
-
+ https://github.com/moodleou/moodle-qtype_gapselect/zipball/MOODLE_21_STABLE
+unzip it into the question/type folder, and then rename the new folder to gapselect.
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
/**
- * Language strings for the sdrag-and-drop words into sentences question type.
+ * Language strings for the gap-select question type.
*
- * @package qtype
- * @subpackage gapselect
+ * @package qtype_gapselect
* @copyright 2011 The Open University
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
$string['gapselectsummary'] = 'Missing words in some text are filled in using dropdown menus.';
$string['group'] = 'Group';
$string['pleaseputananswerineachbox'] = 'Please put an answer in each box.';
+$string['pluginname'] = 'Select missing words';
$string['shuffle'] = 'Shuffle';
/**
* Version information for the select missing words question type.
*
- * @package qtype
- * @subpackage gapselect
+ * @package qtype_gapselect
* @copyright 2011 The Open University
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
defined('MOODLE_INTERNAL') || die();
$plugin->version = 2011020100;
-$plugin->requires = 2011051212;
+$plugin->requires = 2011070100;
+$plugin->cron = 0;
+$plugin->component = 'qtype_gapselect';
+$plugin->maturity = MATURITY_STABLE;
+$plugin->release = '1.0';