]> git.mjollnir.org Git - moodle.git/commitdiff
Give the question bank code sensible PHPdocumentor package names.
authorpichetp <pichetp>
Mon, 19 Mar 2007 22:04:30 +0000 (22:04 +0000)
committerpichetp <pichetp>
Mon, 19 Mar 2007 22:04:30 +0000 (22:04 +0000)
12 files changed:
question/type/calculated/questiontype.php
question/type/datasetdependent/abstractqtype.php
question/type/description/questiontype.php
question/type/essay/questiontype.php
question/type/match/questiontype.php
question/type/missingtype/questiontype.php
question/type/multianswer/questiontype.php
question/type/multichoice/questiontype.php
question/type/numerical/questiontype.php
question/type/random/questiontype.php
question/type/randomsamatch/questiontype.php
question/type/rqp/questiontype.php

index b0ebea32f71995b6d1fc06275d656c8a27558740..43b0d6e68f050df5b89255445fdca2c7ed7fe6a7 100644 (file)
@@ -1,5 +1,8 @@
 <?php  // $Id$
-
+/**
+ * @package questionbank
+ * @subpackage questiontypes
+*/
 /////////////////
 // CALCULATED ///
 /////////////////
index d536ad5f6ab2dfe5f43c73494f828f1498ce5f09..b1bd4110cf8f43fb34de3909db6fe9c4ca72d0d5 100644 (file)
@@ -4,6 +4,10 @@
 ///////////////////////////////////////////////////////////////
 /// ABSTRACT SUPERCLASS FOR QUSTION TYPES THAT USE DATASETS ///
 ///////////////////////////////////////////////////////////////
+/**
+ * @package questionbank
+ * @subpackage questiontypes
+*/
 
 require_once($CFG->libdir.'/filelib.php');
 
index f9afbb8ae72e9200cfcb8cd3f7dc75de766a1a9b..5f241e000c3286ace53c117593268e66b8156a0d 100644 (file)
 // The question type 'description' is not really a question type
 // and it therefore often sticks to some kind of odd behaviour
 //
-
+/**
+ * @package questionbank
+ * @subpackage questiontypes
+*/
 class description_qtype extends default_questiontype {
 
     function name() {
index b92c3443cb90bbba4e9f7505855a9f039525e61a..4505f25f0c545a9e113e3cb01668603f941c5277 100644 (file)
@@ -5,6 +5,10 @@
 /////////////////
 
 /// QUESTION TYPE CLASS //////////////////
+/**
+ * @package questionbank
+ * @subpackage questiontypes
+*/
 class question_essay_qtype extends default_questiontype {
 
     function name() {
index c1538b82e241455494c2f7930539e1bd1e780277..959901d21a1a51f996d12cba6573bb6c3947dddf 100644 (file)
@@ -5,6 +5,10 @@
 /////////////
 
 /// QUESTION TYPE CLASS //////////////////
+/**
+ * @package questionbank
+ * @subpackage questiontypes
+*/
 class question_match_qtype extends default_questiontype {
 
     function name() {
index d91a136ce92f897ee107009ee42a109b55ace152..9b9b8efc1b8e09fbb4cce0080e61a1ddd297bd82 100644 (file)
@@ -12,6 +12,8 @@
  * When a question is encountered with a type that is not installed then its
  * type is changed to 'missingtype'. This questiontype just makes sure that the
  * necessary information is printed about the question.
+ * @package questionbank
+ * @subpackage questiontypes
  */
 class question_missingtype_qtype extends default_questiontype {
 
index 2fc199a4d8ebfae4e635fbeefff0627dd6d2c5ac..d50b0e99a21c050f857ddb24e9411d4477a39f6d 100644 (file)
 ///
 
 /// QUESTION TYPE CLASS //////////////////
+/**
+ * @package questionbank
+ * @subpackage questiontypes
+*/
 class embedded_cloze_qtype extends default_questiontype {
 
     function name() {
index 5fb6d8f09a0479f43367ca35726777085e87f69f..c6506ebb24268096de6f4695a7d1d25f766fab4a 100644 (file)
 /// This class contains some special features in order to make the
 /// question type embeddable within a multianswer (cloze) question
 ///
+/**
+ * @package questionbank
+ * @subpackage questiontypes
+*/
 
 class question_multichoice_qtype extends default_questiontype {
 
index 65db4bc332a2b5981b156e4adb04a07658bb2115..95806eae6c2b321e674fea085083a3a013a9191c 100644 (file)
@@ -3,7 +3,8 @@
  * @version $Id$
  * @author Martin Dougiamas and many others. Tim Hunt.
  * @license http://www.gnu.org/copyleft/gpl.html GNU Public License
- * @package question
+ * @package questionbank
+ * @subpackage questiontypes
  *//** */
 
 require_once("$CFG->dirroot/question/type/shortanswer/questiontype.php");
@@ -16,6 +17,8 @@ require_once("$CFG->dirroot/question/type/shortanswer/questiontype.php");
  *
  * This question type behaves like shortanswer in most cases.
  * Therefore, it extends the shortanswer question type...
+ * @package questionbank
+ * @subpackage questiontypes
  */
 class question_numerical_qtype extends question_shortanswer_qtype {
 
index 4a2c3a368c50d4ae1793d17aaacc588d2efb3159..fb96a22a44b4ecc3e4216d245f6fbc6faf060bbb 100644 (file)
@@ -5,6 +5,10 @@
 //////////////
 
 /// QUESTION TYPE CLASS //////////////////
+/**
+ * @package questionbank
+ * @subpackage questiontypes
+*/
 class random_qtype extends default_questiontype {
 
     // Carries questions available as randoms sorted by category
index e2a968dfbee11e2ee5ae645797575e1acd78d037..fb4a8306dce0baa295841ffee8c0fc1abe0c8fa0 100644 (file)
@@ -8,6 +8,10 @@
 /// can not also be used by a random question
 
 /// QUESTION TYPE CLASS //////////////////
+/**
+ * @package questionbank
+ * @subpackage questiontypes
+*/
 class question_randomsamatch_qtype extends question_match_qtype {
 /// Extends 'match' as there are quite a few simularities...
 
index 605a1514664da068a590f012a6ea8337dc49ca9c..cc4a878acf4a89ab3911800707e0db356f35f0c0 100644 (file)
@@ -7,7 +7,8 @@
 * @author Alex Smith and other members of the Serving Mathematics project
 *         {@link http://maths.york.ac.uk/serving_maths}
 * @license http://www.gnu.org/copyleft/gpl.html GNU Public License
-* @package quiz
+ * @package questionbank
+ * @subpackage questiontypes
 */
 
 require_once($CFG->dirroot . '/question/type/rqp/lib.php');