1<?php 2/** 3 * Options for the REQUIZ plugin 4 * 5 * @author Daniel-Constantin Mierla <miconda@gmail.com> 6 */ 7 8# require quiz for authenticated users (0 - no / 1 - yes) 9$conf['requizusr'] = 0; 10# require quiz for registration form (0 - no / 1 - yes) 11$conf['requizreg'] = 1; 12# list of questions 13$conf['requizset'] = array ( 14 array( 15 "question" => "What is the capital city of France?", 16 "answers" => array ( 17 "Berlin", 18 "Paris", 19 "London", 20 "Madrid", 21 "Tokyo" 22 ), 23 "valid" => "Paris" 24 ), 25 array( 26 "question" => "What word starts with the fourth letter of the alphabet?", 27 "answers" => array ( 28 "Access", 29 "World", 30 "Opera", 31 "Direct", 32 "System" 33 ), 34 "valid" => "Direct" 35 ), 36 array( 37 "question" => "How many moons does planet Earth have?", 38 "answers" => array ( 39 "Five", 40 "Ten", 41 "One", 42 "Nine", 43 "Four" 44 ), 45 "valid" => "One" 46 ) 47 ); 48