एक्सटेंशन:Quiz

This page is a translated version of the page Extension:Quiz and the translation is 100% complete.
मीडियाविकि एक्सटेंशन मैन्युअल
Quiz
प्रकाशन की स्थिति: स्थिर
कार्यान्वयन टैग , हुक
विवरण एक क्विज़ उपकरण प्रदान करता है
लेखक Lrbabeवार्ता
नवीनतम संस्करण 1.2.0 (2015-12-08)
MediaWiki 1.25+
लाइसेंस GNU साधारण सार्वजनिक लाइसेंस 2.0 या अधिक
डाउनलोड करें
उदाहरण and format documentation: v:Help:Quiz
Quarterly downloads 37 (Ranked 101st)
Quiz एक्सटेंशन को अनुवादित करें अगर यह translatewiki.net पर उपलब्ध है
मुद्दे अधूरे कार्य · बग की रिपोर्ट करें

Quiz एक्सटेंशन विकिविश्वविद्यालय पर प्रयुक्त क्विज़-निर्माण उपकरण है। इस एक्सटेंशन का उद्देशय है:

  • सिनटैक्स को आसान बनाना, और शक्तिशाली बनना।
  • सुझाव और सुधार स्वीकार करना (नए प्रकार के सवाल जोड़कर)।

उपयोग

Other help pages are hosted on the Wikiversities in order to allow for working examples.

स्थापना

  • फ़ाइलों को डाउनलोड करें और अपने extensions/ फ़ोल्डर के Quiz नामक डिरेक्ट्री में डालें।
    Developers and code contributors should install the extension from Git instead, using:cd extensions/
    git clone https://gerrit.wikimedia.org/r/mediawiki/extensions/Quiz
  • अपने LocalSettings.php फ़ाइल के अंत में निम्न कोड जोड़ें:
    wfLoadExtension( 'Quiz' );
    
  •   पूर्ण – अपने विकि पर Special:Version पर जाकर देखें कि एक्सटेंशन को सफलतापूर्वक स्थापित किया गया है कि नहीं।

विकास

प्रश्नों का एक नया प्रकार जोड़ना

Quiz was conceived to facilitate the addition of new question types. If the basic types (multiple choice with single/multiple responses) are not enough for you, you have the possibility of easily creating and integrating the type of questions which you need. For that you must have some knowledge of PHP.

  1. The first thing that you must do is choose a syntax (the simplest possible) for your question type. The restrictions are:
    • The syntax of the question's header is fixed. The question has to be placed between curly brackets - i.e. { and } .
    • For consistency, it is recommended to use || to mark the beginning of the feedback section ("correction").
  2. Choose a new code name for your question type (example: "questionTypeName") as well as a symbol (currently the symbol "()" is used for single response multiple choice because it looks like a radio button, and the symbol "[]" is used for multiple response multiple choice because it looks like a checkbox).
  3. Add a "case" at the beginning of the parseParameters's "switch", as follows :
    case 'symbol':
    	$this->mType = "questionTypeName";
    	break;
    
  4. Add a parser function to Quiz.php
    This function must convert a question object from quiz syntax to HTML and set a state to the question (right, wrong, error, NA or unmarked), according to syntax errors and eventually posted answers. Name the function "questionTypeNameParseObject" and implement as follows :
    /**
     * Convert a basic type object from quiz syntax to HTML.
     * 
     * @param  $input				A question object in quiz syntax
     * 
     * @return $output				A question object in HTML.
     */
    function questionTypeNameParseObject($input) {
    	// your code here.
    	$this->setState(""); // Set the state if needed.
    	return $output;
    }
    
  5. Write down your syntax specifications which will be added to the help. Please read first the existing help.
  6. Once this is all done, contact me to include officially your question type inside the extension.

ये भी देखें