Version Description
- CSS: !important added to all CSS-properties
Download this release
Release Info
Developer | xeno010 |
Plugin | Wp-Pro-Quiz |
Version | 0.7 |
Comparing to | |
See all releases |
Code changes from version 0.6 to 0.7
- css/wpProQuiz_front.css +109 -108
- css/wpProQuiz_front.min.css +1 -1
- languages/wp-pro-quiz-de_DE.mo +0 -0
- languages/wp-pro-quiz-de_DE.po +38 -21
- lib/view/WpProQuiz_View_FrontQuiz.php +12 -12
- lib/view/WpProQuiz_View_QuizOverall.php +12 -0
- readme.txt +21 -2
- wp-pro-quiz.php +2 -2
css/wpProQuiz_front.css
CHANGED
@@ -1,194 +1,195 @@
|
|
1 |
.wpProQuiz_answerCorrect {
|
2 |
-
background: #6DB46D;
|
3 |
-
font-weight: bold;
|
|
|
|
|
|
|
4 |
}
|
5 |
|
6 |
.wpProQuiz_answerIncorrect {
|
7 |
-
background: #FF9191;
|
8 |
-
font-weight: bold;
|
9 |
}
|
10 |
.wpProQuiz_content {
|
11 |
-
margin-top: 10px;
|
12 |
-
margin-bottom: 10px;
|
13 |
}
|
14 |
|
15 |
.wpProQuiz_content h2 {
|
16 |
-
margin-bottom: 10px;
|
17 |
}
|
18 |
|
19 |
.wpProQuiz_content input[type="button"], .wpProQuiz_content input[type="button"]:hover {
|
20 |
-
margin: 0;
|
21 |
-
padding: 5px 10px;
|
22 |
-
background: #13455B;
|
23 |
-
border-radius: 11px;
|
24 |
-
color: white;
|
25 |
-
font-weight: bold;
|
26 |
-
border: 1px solid #13455B;
|
27 |
-
box-shadow: 1px 1px 1px #333;
|
28 |
-
text-shadow: none;
|
29 |
}
|
30 |
|
31 |
.wpProQuiz_question_page {
|
32 |
-
margin-bottom: 10px;
|
33 |
}
|
34 |
|
35 |
.wpProQuiz_question_page span {
|
36 |
-
font-weight: bold;
|
37 |
}
|
38 |
|
39 |
.wpProQuiz_questionListItem {
|
40 |
-
padding: 3px;
|
41 |
-
margin-bottom: 5px;
|
42 |
}
|
43 |
|
44 |
.wpProQuiz_questionListItem > table{
|
45 |
-
border-collapse: collapse;
|
46 |
-
width: 100
|
47 |
}
|
48 |
|
49 |
.wpProQuiz_questionListItem:last-child {
|
50 |
-
padding: 3px;
|
51 |
-
margin-bottom: 0;
|
52 |
}
|
53 |
|
54 |
.wpProQuiz_list, wpProQuiz_listItem, .wpProQuiz_questionList, .wpProQuiz_sortStringList, .wpProQuiz_sortStringList, .wpProQuiz_maxtrixSortCriterion, .wpProQuiz_resultsList {
|
55 |
-
list-style: none;
|
56 |
-
padding: 0;
|
57 |
-
margin: 0;
|
58 |
}
|
59 |
.wpProQuiz_questionList {
|
60 |
-
margin-bottom: 10px;
|
61 |
-
background: #F8FAF5;
|
62 |
-
border: 1px solid #C3D1A3;
|
63 |
-
padding: 5px;
|
64 |
-
list-style: none;
|
65 |
}
|
66 |
.wpProQuiz_listItem {
|
67 |
-
position: relative;
|
68 |
}
|
69 |
.wpProQuiz_response {
|
70 |
-
display: none;
|
71 |
-
background: #F8FAF5;
|
72 |
-
border: 1px solid #C4C4C4;
|
73 |
-
padding: 5px;
|
74 |
-
margin-bottom: 15px;
|
75 |
-
box-shadow: 1px 1px 2px #AAA;
|
76 |
}
|
77 |
-
|
78 |
.wpProQuiz_response span {
|
79 |
-
font-weight: bold;
|
80 |
-
}
|
81 |
-
.wpProQuiz_quiz, .wpProQuiz_correct, .wpProQuiz_incorrect, .wpProQuiz_results, .wpProQuiz_time_limit, .wpProQuiz_QuestionButton, .wpProQuiz_clozeCorrect {
|
82 |
-
display: none;
|
83 |
}
|
84 |
.wpProQuiz_sort {
|
85 |
-
width: 25px;
|
86 |
}
|
87 |
-
|
88 |
.wpProQuiz_results h3 {
|
89 |
-
margin-bottom: 10px;
|
90 |
}
|
91 |
.wpProQuiz_sort_correct_answer {
|
92 |
-
font-weight: bold;
|
93 |
-
margin-right: 5px;
|
94 |
-
display: none;
|
95 |
}
|
96 |
.wpProQuiz_sortable, .wpProQuiz_sortStringItem {
|
97 |
-
padding: 5px;
|
98 |
-
border: 1px solid lightGrey;
|
99 |
box-shadow: 2px 2px 1px #EEE;
|
100 |
-
background-color: #F8FAF5;
|
101 |
cursor: move;
|
102 |
}
|
103 |
.wpProQuiz_time_limit .time {
|
104 |
-
font-weight: bold;
|
105 |
-
margin-top: 5px;
|
106 |
-
margin-bottom: 5px;
|
107 |
}
|
108 |
.wpProQuiz_time_limit .progress {
|
109 |
-
height: 10px;
|
110 |
-
|
111 |
-
|
112 |
-
margin-bottom: 5px;
|
113 |
}
|
114 |
.wpProQuiz_time_limit_expired {
|
115 |
-
display: none;
|
116 |
-
font-weight: bold;
|
117 |
-
font-size: 15px;
|
118 |
-
text-align: center;
|
119 |
}
|
120 |
.wpProQuiz_question_text {
|
121 |
-
margin-bottom: 10px;
|
122 |
}
|
123 |
.wpProQuiz_tipp {
|
124 |
-
padding: 10px;
|
125 |
-
background-color: #DDECFF;
|
126 |
-
border: 1px dotted #363636;
|
127 |
-
border-radius: 10px;
|
128 |
-
position: absolute;
|
129 |
-
bottom: 35px;
|
130 |
-
left: 5px;
|
131 |
-
right: 5px;
|
132 |
-
box-shadow: 2px 2px 5px 0px #313131;
|
133 |
-
z-index: 99999;
|
134 |
-
display: none;
|
135 |
}
|
136 |
.wpProQuiz_matrixSortString, .wpProQuiz_matrixSortString > h3{
|
137 |
-
margin-bottom: 10px;
|
138 |
-
margin-top: 0;
|
139 |
}
|
140 |
.wpProQuiz_matrixSortString {
|
141 |
-
background: #F8FAF5;
|
142 |
-
border: 1px solid #C3D1A3;
|
143 |
-
padding: 5px;
|
144 |
}
|
145 |
.wpProQuiz_sortStringList {
|
146 |
-
padding: 10px;
|
147 |
}
|
148 |
.wpProQuiz_sortStringList > li {
|
149 |
-
float: left;
|
150 |
-
margin-left: 5px;
|
151 |
-
margin-right: 5px;
|
152 |
-
margin-bottom: 5px;
|
153 |
}
|
154 |
.wpProQuiz_sortStringItem {
|
155 |
-
margin: 0;
|
156 |
}
|
157 |
.wpProQuiz_maxtrixSortCriterion {
|
158 |
-
padding: 10px;
|
159 |
}
|
160 |
.wpProQuiz_placehold {
|
161 |
-
background-color: #FFFFC2;
|
162 |
-
padding: 5px;
|
163 |
-
height: 30px;
|
164 |
-
min-width: 50px;
|
165 |
}
|
166 |
.wpProQuiz_maxtrixSortText {
|
167 |
-
padding: 5px;
|
168 |
}
|
169 |
.wpProQuiz_mextrixTr > td {
|
170 |
-
border: 1px solid #D1D1D1;
|
171 |
-
padding: 5px;
|
172 |
-
vertical-align: middle;
|
173 |
}
|
174 |
.wpProQuiz_resultsList > li {
|
175 |
-
display: none;
|
176 |
}
|
177 |
.wpProQuiz_points {
|
178 |
-
font-weight: bold;
|
179 |
-
text-align: center;
|
180 |
-
margin-bottom: 20px;
|
181 |
}
|
182 |
.wpProQuiz_cloze input {
|
183 |
background: transparent;
|
184 |
-
border: 0;
|
185 |
-
border-bottom: 1px solid;
|
186 |
-
height: 18px;
|
187 |
-
margin: 0;
|
188 |
-
padding: 0 4px 0 4px;
|
189 |
-
color: black;
|
190 |
-
border-radius: 0;
|
|
|
191 |
}
|
192 |
.wpProQuiz_cloze input:focus {
|
193 |
-
outline: none;
|
|
|
|
|
|
|
|
|
194 |
}
|
1 |
.wpProQuiz_answerCorrect {
|
2 |
+
background: #6DB46D !important;
|
3 |
+
font-weight: bold !important;
|
4 |
+
}
|
5 |
+
.wpProQuiz_answerCorrect label {
|
6 |
+
font-weight: bold !important;
|
7 |
}
|
8 |
|
9 |
.wpProQuiz_answerIncorrect {
|
10 |
+
background: #FF9191 !important;
|
11 |
+
font-weight: bold !important;
|
12 |
}
|
13 |
.wpProQuiz_content {
|
14 |
+
margin-top: 10px !important;
|
15 |
+
margin-bottom: 10px !important;
|
16 |
}
|
17 |
|
18 |
.wpProQuiz_content h2 {
|
19 |
+
margin-bottom: 10px !important;
|
20 |
}
|
21 |
|
22 |
.wpProQuiz_content input[type="button"], .wpProQuiz_content input[type="button"]:hover {
|
23 |
+
margin: 0 !important;
|
24 |
+
padding: 5px 10px !important;
|
25 |
+
background: #13455B !important;
|
26 |
+
border-radius: 11px !important;
|
27 |
+
color: white !important;
|
28 |
+
font-weight: bold !important;
|
29 |
+
border: 1px solid #13455B !important;
|
30 |
+
box-shadow: 1px 1px 1px #333 !important;
|
31 |
+
text-shadow: none !important;
|
32 |
}
|
33 |
|
34 |
.wpProQuiz_question_page {
|
35 |
+
margin-bottom: 10px !important;
|
36 |
}
|
37 |
|
38 |
.wpProQuiz_question_page span {
|
39 |
+
font-weight: bold !important;
|
40 |
}
|
41 |
|
42 |
.wpProQuiz_questionListItem {
|
43 |
+
padding: 3px !important;
|
44 |
+
margin-bottom: 5px !important;
|
45 |
}
|
46 |
|
47 |
.wpProQuiz_questionListItem > table{
|
48 |
+
border-collapse: collapse !important;
|
49 |
+
width: 100%;
|
50 |
}
|
51 |
|
52 |
.wpProQuiz_questionListItem:last-child {
|
53 |
+
padding: 3px !important;
|
54 |
+
margin-bottom: 0 !important;
|
55 |
}
|
56 |
|
57 |
.wpProQuiz_list, wpProQuiz_listItem, .wpProQuiz_questionList, .wpProQuiz_sortStringList, .wpProQuiz_sortStringList, .wpProQuiz_maxtrixSortCriterion, .wpProQuiz_resultsList {
|
58 |
+
list-style: none !important;
|
59 |
+
padding: 0 !important;
|
60 |
+
margin: 0 !important;
|
61 |
}
|
62 |
.wpProQuiz_questionList {
|
63 |
+
margin-bottom: 10px !important;
|
64 |
+
background: #F8FAF5 !important;
|
65 |
+
border: 1px solid #C3D1A3 !important;
|
66 |
+
padding: 5px !important;
|
67 |
+
list-style: none !important;
|
68 |
}
|
69 |
.wpProQuiz_listItem {
|
70 |
+
position: relative !important;
|
71 |
}
|
72 |
.wpProQuiz_response {
|
73 |
+
display: none !important;
|
74 |
+
background: #F8FAF5 !important;
|
75 |
+
border: 1px solid #C4C4C4 !important;
|
76 |
+
padding: 5px !important;
|
77 |
+
margin-bottom: 15px !important;
|
78 |
+
box-shadow: 1px 1px 2px #AAA !important;
|
79 |
}
|
|
|
80 |
.wpProQuiz_response span {
|
81 |
+
font-weight: bold !important;
|
|
|
|
|
|
|
82 |
}
|
83 |
.wpProQuiz_sort {
|
84 |
+
width: 25px !important;
|
85 |
}
|
|
|
86 |
.wpProQuiz_results h3 {
|
87 |
+
margin-bottom: 10px !important;
|
88 |
}
|
89 |
.wpProQuiz_sort_correct_answer {
|
90 |
+
font-weight: bold !important;
|
91 |
+
margin-right: 5px !important;
|
92 |
+
display: none !important;
|
93 |
}
|
94 |
.wpProQuiz_sortable, .wpProQuiz_sortStringItem {
|
95 |
+
padding: 5px !important;
|
96 |
+
border: 1px solid lightGrey !important;
|
97 |
box-shadow: 2px 2px 1px #EEE;
|
98 |
+
background-color: #F8FAF5 !important;
|
99 |
cursor: move;
|
100 |
}
|
101 |
.wpProQuiz_time_limit .time {
|
102 |
+
font-weight: bold !important;
|
103 |
+
margin-top: 5px !important;
|
104 |
+
margin-bottom: 5px !important;
|
105 |
}
|
106 |
.wpProQuiz_time_limit .progress {
|
107 |
+
height: 10px !important;
|
108 |
+
background-color: blue !important;
|
109 |
+
margin-bottom: 5px !important;
|
|
|
110 |
}
|
111 |
.wpProQuiz_time_limit_expired {
|
112 |
+
display: none !important;
|
113 |
+
font-weight: bold !important;
|
114 |
+
font-size: 15px !important;
|
115 |
+
text-align: center !important;
|
116 |
}
|
117 |
.wpProQuiz_question_text {
|
118 |
+
margin-bottom: 10px !important;
|
119 |
}
|
120 |
.wpProQuiz_tipp {
|
121 |
+
padding: 10px !important;
|
122 |
+
background-color: #DDECFF !important;
|
123 |
+
border: 1px dotted #363636 !important;
|
124 |
+
border-radius: 10px !important;
|
125 |
+
position: absolute !important;
|
126 |
+
bottom: 35px !important;
|
127 |
+
left: 5px !important;
|
128 |
+
right: 5px !important;
|
129 |
+
box-shadow: 2px 2px 5px 0px #313131 !important;
|
130 |
+
z-index: 99999 !important;
|
|
|
131 |
}
|
132 |
.wpProQuiz_matrixSortString, .wpProQuiz_matrixSortString > h3{
|
133 |
+
margin-bottom: 10px !important;
|
134 |
+
margin-top: 0 !important;
|
135 |
}
|
136 |
.wpProQuiz_matrixSortString {
|
137 |
+
background: #F8FAF5 !important;
|
138 |
+
border: 1px solid #C3D1A3 !important;
|
139 |
+
padding: 5px !important;
|
140 |
}
|
141 |
.wpProQuiz_sortStringList {
|
142 |
+
padding: 10px !important;
|
143 |
}
|
144 |
.wpProQuiz_sortStringList > li {
|
145 |
+
float: left !important;
|
146 |
+
margin-left: 5px !important;
|
147 |
+
margin-right: 5px !important;
|
148 |
+
margin-bottom: 5px !important;
|
149 |
}
|
150 |
.wpProQuiz_sortStringItem {
|
151 |
+
margin: 0 !important;
|
152 |
}
|
153 |
.wpProQuiz_maxtrixSortCriterion {
|
154 |
+
padding: 10px !important;
|
155 |
}
|
156 |
.wpProQuiz_placehold {
|
157 |
+
background-color: #FFFFC2 !important;
|
158 |
+
padding: 5px !important;
|
159 |
+
height: 30px !important;
|
160 |
+
min-width: 50px !important;
|
161 |
}
|
162 |
.wpProQuiz_maxtrixSortText {
|
163 |
+
padding: 5px !important;
|
164 |
}
|
165 |
.wpProQuiz_mextrixTr > td {
|
166 |
+
border: 1px solid #D1D1D1 !important;
|
167 |
+
padding: 5px !important;
|
168 |
+
vertical-align: middle !important;
|
169 |
}
|
170 |
.wpProQuiz_resultsList > li {
|
171 |
+
display: none !important;
|
172 |
}
|
173 |
.wpProQuiz_points {
|
174 |
+
font-weight: bold !important;
|
175 |
+
text-align: center !important;
|
176 |
+
margin-bottom: 20px !important;
|
177 |
}
|
178 |
.wpProQuiz_cloze input {
|
179 |
background: transparent;
|
180 |
+
border: 0 !important;
|
181 |
+
border-bottom: 1px solid !important;
|
182 |
+
height: 18px !important;
|
183 |
+
margin: 0 !important;
|
184 |
+
padding: 0 4px 0 4px !important;
|
185 |
+
color: black !important;
|
186 |
+
border-radius: 0 !important;
|
187 |
+
box-shadow: 0 0 !important;
|
188 |
}
|
189 |
.wpProQuiz_cloze input:focus {
|
190 |
+
outline: none !important;
|
191 |
+
}
|
192 |
+
.wpProQuiz_questionListItem input, .wpProQuiz_questionListItem label {
|
193 |
+
margin: 0 !important;
|
194 |
+
font-weight: normal;
|
195 |
}
|
css/wpProQuiz_front.min.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
.wpProQuiz_answerCorrect{background:#6DB46D;font-weight:700;}.wpProQuiz_answerIncorrect{background:#FF9191;font-weight:700;}.wpProQuiz_content{margin-top:10px;margin-bottom:10px;}.wpProQuiz_content h2{margin-bottom:10px;}.wpProQuiz_content input[type=button],.wpProQuiz_content input[type=button]:hover{margin:0;padding:5px 10px;background:#13455B;border-radius:11px;color:#FFF;font-weight:700;border:1px solid #13455B;box-shadow:1px 1px 1px #333;text-shadow:none;}.wpProQuiz_question_page{margin-bottom:10px;}.wpProQuiz_question_page span{font-weight:700;}.wpProQuiz_questionListItem{padding:3px;margin-bottom:5px;}.wpProQuiz_questionListItem > table{border-collapse:collapse;width:100%;}.wpProQuiz_questionListItem:last-child{padding:3px;margin-bottom:0;}.wpProQuiz_list,wpProQuiz_listItem,.wpProQuiz_questionList,.wpProQuiz_sortStringList,.wpProQuiz_sortStringList,.wpProQuiz_maxtrixSortCriterion,.wpProQuiz_resultsList{list-style:none;padding:0;margin:0;}.wpProQuiz_questionList{margin-bottom:10px;background:#F8FAF5;border:1px solid #C3D1A3;padding:5px;list-style:none;}.wpProQuiz_listItem{position:relative;}.wpProQuiz_response{display:none;background:#F8FAF5;border:1px solid #C4C4C4;padding:5px;margin-bottom:15px;box-shadow:1px 1px 2px #AAA;}.wpProQuiz_response span{font-weight:700;}.
|
1 |
+
.wpProQuiz_answerCorrect{background:#6DB46D!important;font-weight:700!important;}.wpProQuiz_answerCorrect label{font-weight:700!important;}.wpProQuiz_answerIncorrect{background:#FF9191!important;font-weight:700!important;}.wpProQuiz_content{margin-top:10px!important;margin-bottom:10px!important;}.wpProQuiz_content h2{margin-bottom:10px!important;}.wpProQuiz_content input[type=button],.wpProQuiz_content input[type=button]:hover{margin:0!important;padding:5px 10px!important;background:#13455B!important;border-radius:11px!important;color:#FFF!important;font-weight:700!important;border:1px solid #13455B!important;box-shadow:1px 1px 1px #333!important;text-shadow:none!important;}.wpProQuiz_question_page{margin-bottom:10px!important;}.wpProQuiz_question_page span{font-weight:700!important;}.wpProQuiz_questionListItem{padding:3px!important;margin-bottom:5px!important;}.wpProQuiz_questionListItem > table{border-collapse:collapse!important;width:100%;}.wpProQuiz_questionListItem:last-child{padding:3px!important;margin-bottom:0!important;}.wpProQuiz_list,wpProQuiz_listItem,.wpProQuiz_questionList,.wpProQuiz_sortStringList,.wpProQuiz_sortStringList,.wpProQuiz_maxtrixSortCriterion,.wpProQuiz_resultsList{list-style:none!important;padding:0!important;margin:0!important;}.wpProQuiz_questionList{margin-bottom:10px!important;background:#F8FAF5!important;border:1px solid #C3D1A3!important;padding:5px!important;list-style:none!important;}.wpProQuiz_listItem{position:relative!important;}.wpProQuiz_response{display:none!important;background:#F8FAF5!important;border:1px solid #C4C4C4!important;padding:5px!important;margin-bottom:15px!important;box-shadow:1px 1px 2px #AAA!important;}.wpProQuiz_response span{font-weight:700!important;}.wpProQuiz_sort{width:25px!important;}.wpProQuiz_results h3{margin-bottom:10px!important;}.wpProQuiz_sort_correct_answer{font-weight:700!important;margin-right:5px!important;display:none!important;}.wpProQuiz_sortable,.wpProQuiz_sortStringItem{padding:5px!important;border:1px solid #D3D3D3!important;box-shadow:2px 2px 1px #EEE;background-color:#F8FAF5!important;cursor:move;}.wpProQuiz_time_limit .time{font-weight:700!important;margin-top:5px!important;margin-bottom:5px!important;}.wpProQuiz_time_limit .progress{height:10px!important;background-color:blue!important;margin-bottom:5px!important;}.wpProQuiz_time_limit_expired{display:none!important;font-weight:700!important;font-size:15px!important;text-align:center!important;}.wpProQuiz_question_text{margin-bottom:10px!important;}.wpProQuiz_tipp{padding:10px!important;background-color:#DDECFF!important;border:1px dotted #363636!important;border-radius:10px!important;position:absolute!important;bottom:35px!important;left:5px!important;right:5px!important;box-shadow:2px 2px 5px 0 #313131!important;z-index:99999!important;}.wpProQuiz_matrixSortString,.wpProQuiz_matrixSortString > h3{margin-bottom:10px!important;margin-top:0!important;}.wpProQuiz_matrixSortString{background:#F8FAF5!important;border:1px solid #C3D1A3!important;padding:5px!important;}.wpProQuiz_sortStringList{padding:10px!important;}.wpProQuiz_sortStringList > li{float:left!important;margin-left:5px!important;margin-right:5px!important;margin-bottom:5px!important;}.wpProQuiz_sortStringItem{margin:0!important;}.wpProQuiz_maxtrixSortCriterion{padding:10px!important;}.wpProQuiz_placehold{background-color:#FFFFC2!important;padding:5px!important;height:30px!important;min-width:50px!important;}.wpProQuiz_maxtrixSortText{padding:5px!important;}.wpProQuiz_mextrixTr > td{border:1px solid #D1D1D1!important;padding:5px!important;vertical-align:middle!important;}.wpProQuiz_resultsList > li{display:none!important;}.wpProQuiz_points{font-weight:700!important;text-align:center!important;margin-bottom:20px!important;}.wpProQuiz_cloze input{background:transparent;border:0!important;border-bottom:1px solid!important;height:18px!important;margin:0!important;padding:0 4px!important;color:#000!important;border-radius:0!important;box-shadow:0 0!important;}.wpProQuiz_cloze input:focus{outline:none!important;}.wpProQuiz_questionListItem input,.wpProQuiz_questionListItem label{margin:0!important;font-weight:400;}
|
languages/wp-pro-quiz-de_DE.mo
CHANGED
Binary file
|
languages/wp-pro-quiz-de_DE.po
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Wp-Pro-Quiz\n"
|
4 |
-
"POT-Creation-Date: 2012-11-
|
5 |
-
"PO-Revision-Date: 2012-11-
|
6 |
"Last-Translator: Julius Fischer <julius.f@gmx.net>\n"
|
7 |
"Language-Team: Julius Fischer\n"
|
8 |
"Language: German\n"
|
@@ -212,8 +212,8 @@ msgid "Next exercise"
|
|
212 |
msgstr "Nächste Frage"
|
213 |
|
214 |
#: lib/view/WpProQuiz_View_Import.php:21
|
215 |
-
#: lib/view/WpProQuiz_View_QuizOverall.php:
|
216 |
-
#: lib/view/WpProQuiz_View_QuizOverall.php:
|
217 |
msgid "Import"
|
218 |
msgstr "Import"
|
219 |
|
@@ -242,12 +242,12 @@ msgid "Quiz name"
|
|
242 |
msgstr "Quiz-Name"
|
243 |
|
244 |
#: lib/view/WpProQuiz_View_Import.php:44
|
245 |
-
#: lib/view/WpProQuiz_View_QuizOverall.php:
|
246 |
msgid "Questions"
|
247 |
msgstr "Fragen"
|
248 |
|
249 |
#: lib/view/WpProQuiz_View_Import.php:67
|
250 |
-
#: lib/view/WpProQuiz_View_QuizOverall.php:
|
251 |
msgid "Start import"
|
252 |
msgstr "Import starten"
|
253 |
|
@@ -460,22 +460,22 @@ msgid "Questions sorted"
|
|
460 |
msgstr "Fragen sortiert"
|
461 |
|
462 |
#: lib/view/WpProQuiz_View_QuestionOverall.php:14
|
463 |
-
#: lib/view/WpProQuiz_View_QuizOverall.php:
|
464 |
msgid "Name"
|
465 |
msgstr "Name"
|
466 |
|
467 |
#: lib/view/WpProQuiz_View_QuestionOverall.php:15
|
468 |
-
#: lib/view/WpProQuiz_View_QuizOverall.php:
|
469 |
msgid "Action"
|
470 |
msgstr "Aktion"
|
471 |
|
472 |
#: lib/view/WpProQuiz_View_QuestionOverall.php:27
|
473 |
-
#: lib/view/WpProQuiz_View_QuizOverall.php:
|
474 |
msgid "Edit"
|
475 |
msgstr "Bearbeiten"
|
476 |
|
477 |
#: lib/view/WpProQuiz_View_QuestionOverall.php:28
|
478 |
-
#: lib/view/WpProQuiz_View_QuizOverall.php:
|
479 |
msgid "Delete"
|
480 |
msgstr "Löschen"
|
481 |
|
@@ -562,7 +562,7 @@ msgstr ""
|
|
562 |
|
563 |
#: lib/view/WpProQuiz_View_QuizEdit.php:144
|
564 |
#: lib/view/WpProQuiz_View_QuizEdit.php:149
|
565 |
-
#: lib/view/WpProQuiz_View_QuizOverall.php:
|
566 |
msgid "Statistics"
|
567 |
msgstr "Statistik"
|
568 |
|
@@ -679,28 +679,45 @@ msgstr "Stufe hinzufügen"
|
|
679 |
msgid "Quiz overview"
|
680 |
msgstr "Quiz Übersicht"
|
681 |
|
682 |
-
#: lib/view/WpProQuiz_View_QuizOverall.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
683 |
msgid "ID"
|
684 |
msgstr "ID"
|
685 |
|
686 |
-
#: lib/view/WpProQuiz_View_QuizOverall.php:
|
687 |
msgid "Shortcode"
|
688 |
msgstr "Shortcode"
|
689 |
|
690 |
-
#: lib/view/WpProQuiz_View_QuizOverall.php:
|
691 |
msgid "Preview"
|
692 |
msgstr "Vorschau"
|
693 |
|
694 |
-
#: lib/view/WpProQuiz_View_QuizOverall.php:
|
695 |
msgid "Add quiz"
|
696 |
msgstr "Quiz hinzufügen"
|
697 |
|
698 |
-
#: lib/view/WpProQuiz_View_QuizOverall.php:
|
699 |
-
#: lib/view/WpProQuiz_View_QuizOverall.php:
|
700 |
msgid "Export"
|
701 |
msgstr "Export"
|
702 |
|
703 |
-
#: lib/view/WpProQuiz_View_QuizOverall.php:
|
704 |
msgid ""
|
705 |
"Choose the respective question, which you would like to export and press on "
|
706 |
"\"Start export\""
|
@@ -708,17 +725,17 @@ msgstr ""
|
|
708 |
"Wählen Sie oben die entsprechen Quiz aus, die Sie exportieren möchten und "
|
709 |
"klicken Sie anschliessen auf \"Export starten\""
|
710 |
|
711 |
-
#: lib/view/WpProQuiz_View_QuizOverall.php:
|
712 |
msgid "Start export"
|
713 |
msgstr "Export starten"
|
714 |
|
715 |
-
#: lib/view/WpProQuiz_View_QuizOverall.php:
|
716 |
msgid "Import only *.wpq files from known and trusted sources."
|
717 |
msgstr ""
|
718 |
"Importieren sie nur *.wpq Dateien aus bekannten und vertrauenswürdigen "
|
719 |
"Quellen."
|
720 |
|
721 |
-
#: lib/view/WpProQuiz_View_QuizOverall.php:
|
722 |
#, php-format
|
723 |
msgid "Maximal %d MiB"
|
724 |
msgstr "Maximal %d MiB"
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Wp-Pro-Quiz\n"
|
4 |
+
"POT-Creation-Date: 2012-11-30 13:45+0100\n"
|
5 |
+
"PO-Revision-Date: 2012-11-30 13:45+0100\n"
|
6 |
"Last-Translator: Julius Fischer <julius.f@gmx.net>\n"
|
7 |
"Language-Team: Julius Fischer\n"
|
8 |
"Language: German\n"
|
212 |
msgstr "Nächste Frage"
|
213 |
|
214 |
#: lib/view/WpProQuiz_View_Import.php:21
|
215 |
+
#: lib/view/WpProQuiz_View_QuizOverall.php:77
|
216 |
+
#: lib/view/WpProQuiz_View_QuizOverall.php:92
|
217 |
msgid "Import"
|
218 |
msgstr "Import"
|
219 |
|
242 |
msgstr "Quiz-Name"
|
243 |
|
244 |
#: lib/view/WpProQuiz_View_Import.php:44
|
245 |
+
#: lib/view/WpProQuiz_View_QuizOverall.php:65
|
246 |
msgid "Questions"
|
247 |
msgstr "Fragen"
|
248 |
|
249 |
#: lib/view/WpProQuiz_View_Import.php:67
|
250 |
+
#: lib/view/WpProQuiz_View_QuizOverall.php:103
|
251 |
msgid "Start import"
|
252 |
msgstr "Import starten"
|
253 |
|
460 |
msgstr "Fragen sortiert"
|
461 |
|
462 |
#: lib/view/WpProQuiz_View_QuestionOverall.php:14
|
463 |
+
#: lib/view/WpProQuiz_View_QuizOverall.php:51
|
464 |
msgid "Name"
|
465 |
msgstr "Name"
|
466 |
|
467 |
#: lib/view/WpProQuiz_View_QuestionOverall.php:15
|
468 |
+
#: lib/view/WpProQuiz_View_QuizOverall.php:52
|
469 |
msgid "Action"
|
470 |
msgstr "Aktion"
|
471 |
|
472 |
#: lib/view/WpProQuiz_View_QuestionOverall.php:27
|
473 |
+
#: lib/view/WpProQuiz_View_QuizOverall.php:66
|
474 |
msgid "Edit"
|
475 |
msgstr "Bearbeiten"
|
476 |
|
477 |
#: lib/view/WpProQuiz_View_QuestionOverall.php:28
|
478 |
+
#: lib/view/WpProQuiz_View_QuizOverall.php:67
|
479 |
msgid "Delete"
|
480 |
msgstr "Löschen"
|
481 |
|
562 |
|
563 |
#: lib/view/WpProQuiz_View_QuizEdit.php:144
|
564 |
#: lib/view/WpProQuiz_View_QuizEdit.php:149
|
565 |
+
#: lib/view/WpProQuiz_View_QuizOverall.php:69
|
566 |
msgid "Statistics"
|
567 |
msgstr "Statistik"
|
568 |
|
679 |
msgid "Quiz overview"
|
680 |
msgstr "Quiz Übersicht"
|
681 |
|
682 |
+
#: lib/view/WpProQuiz_View_QuizOverall.php:34
|
683 |
+
msgid "In case of problems"
|
684 |
+
msgstr "Bei Problemen"
|
685 |
+
|
686 |
+
#: lib/view/WpProQuiz_View_QuizOverall.php:36
|
687 |
+
msgid "If quiz doesn't work in front-end, please try following:"
|
688 |
+
msgstr ""
|
689 |
+
"Wenn das Quiz im Front-End nicht funktioniert, versucht bitte folgendes:"
|
690 |
+
|
691 |
+
#: lib/view/WpProQuiz_View_QuizOverall.php:42
|
692 |
+
msgid ""
|
693 |
+
"Own themes changes internal order of filters, what causes the problems. "
|
694 |
+
"With additional shortcode [raw] this is prevented."
|
695 |
+
msgstr ""
|
696 |
+
"Einige Themen verändern die interne Reihenfolge der Filter, wodurch es zu "
|
697 |
+
"Fehlern kommt. Mit dem zusätzlichen Shortcode [raw] wird dies verhindert."
|
698 |
+
|
699 |
+
#: lib/view/WpProQuiz_View_QuizOverall.php:49
|
700 |
msgid "ID"
|
701 |
msgstr "ID"
|
702 |
|
703 |
+
#: lib/view/WpProQuiz_View_QuizOverall.php:50
|
704 |
msgid "Shortcode"
|
705 |
msgstr "Shortcode"
|
706 |
|
707 |
+
#: lib/view/WpProQuiz_View_QuizOverall.php:68
|
708 |
msgid "Preview"
|
709 |
msgstr "Vorschau"
|
710 |
|
711 |
+
#: lib/view/WpProQuiz_View_QuizOverall.php:76
|
712 |
msgid "Add quiz"
|
713 |
msgstr "Quiz hinzufügen"
|
714 |
|
715 |
+
#: lib/view/WpProQuiz_View_QuizOverall.php:78
|
716 |
+
#: lib/view/WpProQuiz_View_QuizOverall.php:82
|
717 |
msgid "Export"
|
718 |
msgstr "Export"
|
719 |
|
720 |
+
#: lib/view/WpProQuiz_View_QuizOverall.php:83
|
721 |
msgid ""
|
722 |
"Choose the respective question, which you would like to export and press on "
|
723 |
"\"Start export\""
|
725 |
"Wählen Sie oben die entsprechen Quiz aus, die Sie exportieren möchten und "
|
726 |
"klicken Sie anschliessen auf \"Export starten\""
|
727 |
|
728 |
+
#: lib/view/WpProQuiz_View_QuizOverall.php:87
|
729 |
msgid "Start export"
|
730 |
msgstr "Export starten"
|
731 |
|
732 |
+
#: lib/view/WpProQuiz_View_QuizOverall.php:93
|
733 |
msgid "Import only *.wpq files from known and trusted sources."
|
734 |
msgstr ""
|
735 |
"Importieren sie nur *.wpq Dateien aus bekannten und vertrauenswürdigen "
|
736 |
"Quellen."
|
737 |
|
738 |
+
#: lib/view/WpProQuiz_View_QuizOverall.php:101
|
739 |
#, php-format
|
740 |
msgid "Maximal %d MiB"
|
741 |
msgstr "Maximal %d MiB"
|
lib/view/WpProQuiz_View_FrontQuiz.php
CHANGED
@@ -68,7 +68,7 @@ class WpProQuiz_View_FrontQuiz extends WpProQuiz_View_View {
|
|
68 |
<input type="button" value="<?php _e('Start quiz', 'wp-pro-quiz'); ?>" name="startQuiz">
|
69 |
</div>
|
70 |
</div>
|
71 |
-
<div class="wpProQuiz_results">
|
72 |
<h3><?php _e('Results', 'wp-pro-quiz'); ?></h3>
|
73 |
<p>
|
74 |
<?php printf(__('%s of %s questions answered correctly', 'wp-pro-quiz'), '<span class="wpProQuiz_correct_answer"></span>', '<span>'.$question_count.'</span>'); ?>
|
@@ -98,11 +98,11 @@ class WpProQuiz_View_FrontQuiz extends WpProQuiz_View_View {
|
|
98 |
<input type="button" name="reShowQuestion" value="<?php _e('View question', 'wp-pro-quiz'); ?>">
|
99 |
</p>
|
100 |
</div>
|
101 |
-
<div class="wpProQuiz_time_limit">
|
102 |
<div class="time"><?php _e('Time limit', 'wp-pro-quiz'); ?>: <span>00:03:15</span></div>
|
103 |
<div class="progress"></div>
|
104 |
</div>
|
105 |
-
<div class="wpProQuiz_quiz">
|
106 |
<ol class="wpProQuiz_list">
|
107 |
<?php
|
108 |
$index = 0;
|
@@ -120,7 +120,7 @@ class WpProQuiz_View_FrontQuiz extends WpProQuiz_View_View {
|
|
120 |
<?php } ?>
|
121 |
</div>
|
122 |
<h3><span><?php echo $index; ?></span>. <?php _e('Question', 'wp-pro-quiz'); ?></h3>
|
123 |
-
<div class="wpProQuiz_question">
|
124 |
<div class="wpProQuiz_question_text">
|
125 |
<?php echo do_shortcode(apply_filters('comment_text', $question->getQuestion())); ?>
|
126 |
</div>
|
@@ -194,7 +194,7 @@ class WpProQuiz_View_FrontQuiz extends WpProQuiz_View_View {
|
|
194 |
|
195 |
$input = '<span class="wpProQuiz_cloze"><input type="text" value="">';
|
196 |
|
197 |
-
$clozeText = preg_replace('#\{(.*?)\}#', $input.' <span class="wpProQuiz_clozeCorrect">(\1)</span></span>', $clozeText);
|
198 |
|
199 |
echo $clozeText;
|
200 |
?>
|
@@ -203,7 +203,7 @@ class WpProQuiz_View_FrontQuiz extends WpProQuiz_View_View {
|
|
203 |
</ul>
|
204 |
</div>
|
205 |
<div class="wpProQuiz_response">
|
206 |
-
<div class="wpProQuiz_correct">
|
207 |
<span>
|
208 |
<?php _e('Correct', 'wp-pro-quiz'); ?>
|
209 |
</span>
|
@@ -211,7 +211,7 @@ class WpProQuiz_View_FrontQuiz extends WpProQuiz_View_View {
|
|
211 |
<?php echo do_shortcode(apply_filters('comment_text', $question->getCorrectMsg())); ?>
|
212 |
</p>
|
213 |
</div>
|
214 |
-
<div class="wpProQuiz_incorrect">
|
215 |
<span>
|
216 |
<?php _e('Incorrect', 'wp-pro-quiz'); ?>
|
217 |
</span>
|
@@ -228,7 +228,7 @@ class WpProQuiz_View_FrontQuiz extends WpProQuiz_View_View {
|
|
228 |
</p>
|
229 |
</div>
|
230 |
</div>
|
231 |
-
<div class="wpProQuiz_tipp">
|
232 |
<h3><?php _e('Hint', 'wp-pro-quiz'); ?></h3>
|
233 |
<?php
|
234 |
if($question->isTipEnabled()) {
|
@@ -236,12 +236,12 @@ class WpProQuiz_View_FrontQuiz extends WpProQuiz_View_View {
|
|
236 |
}
|
237 |
?>
|
238 |
</div>
|
239 |
-
<input type="button" name="check" value="<?php _e('Check', 'wp-pro-quiz'); ?>" class="wpProQuiz_QuestionButton" style="float: left; margin-right: 10px;">
|
240 |
-
<input type="button" name="back" value="<?php _e('Back', 'wp-pro-quiz'); ?>" class="wpProQuiz_QuestionButton" style="float: left; margin-right: 10px;">
|
241 |
<?php if($question->isTipEnabled()) { ?>
|
242 |
-
<input type="button" name="tip" value="<?php _e('Hint', 'wp-pro-quiz'); ?>" class="wpProQuiz_QuestionButton wpProQuiz_TipButton" style="float: left; display: inline-block;">
|
243 |
<?php } ?>
|
244 |
-
<input type="button" name="next" value="<?php _e('Next exercise', 'wp-pro-quiz'); ?>" class="wpProQuiz_QuestionButton" style="float: right;" >
|
245 |
<div style="clear: both;"></div>
|
246 |
</li>
|
247 |
|
68 |
<input type="button" value="<?php _e('Start quiz', 'wp-pro-quiz'); ?>" name="startQuiz">
|
69 |
</div>
|
70 |
</div>
|
71 |
+
<div style="display: none;" class="wpProQuiz_results">
|
72 |
<h3><?php _e('Results', 'wp-pro-quiz'); ?></h3>
|
73 |
<p>
|
74 |
<?php printf(__('%s of %s questions answered correctly', 'wp-pro-quiz'), '<span class="wpProQuiz_correct_answer"></span>', '<span>'.$question_count.'</span>'); ?>
|
98 |
<input type="button" name="reShowQuestion" value="<?php _e('View question', 'wp-pro-quiz'); ?>">
|
99 |
</p>
|
100 |
</div>
|
101 |
+
<div style="display: none;" class="wpProQuiz_time_limit">
|
102 |
<div class="time"><?php _e('Time limit', 'wp-pro-quiz'); ?>: <span>00:03:15</span></div>
|
103 |
<div class="progress"></div>
|
104 |
</div>
|
105 |
+
<div style="display: none;" class="wpProQuiz_quiz">
|
106 |
<ol class="wpProQuiz_list">
|
107 |
<?php
|
108 |
$index = 0;
|
120 |
<?php } ?>
|
121 |
</div>
|
122 |
<h3><span><?php echo $index; ?></span>. <?php _e('Question', 'wp-pro-quiz'); ?></h3>
|
123 |
+
<div class="wpProQuiz_question" style="margin: 10px 0px 0px 0px;">
|
124 |
<div class="wpProQuiz_question_text">
|
125 |
<?php echo do_shortcode(apply_filters('comment_text', $question->getQuestion())); ?>
|
126 |
</div>
|
194 |
|
195 |
$input = '<span class="wpProQuiz_cloze"><input type="text" value="">';
|
196 |
|
197 |
+
$clozeText = preg_replace('#\{(.*?)\}#', $input.' <span class="wpProQuiz_clozeCorrect" style="display: none;">(\1)</span></span>', $clozeText);
|
198 |
|
199 |
echo $clozeText;
|
200 |
?>
|
203 |
</ul>
|
204 |
</div>
|
205 |
<div class="wpProQuiz_response">
|
206 |
+
<div style="display: none;" class="wpProQuiz_correct">
|
207 |
<span>
|
208 |
<?php _e('Correct', 'wp-pro-quiz'); ?>
|
209 |
</span>
|
211 |
<?php echo do_shortcode(apply_filters('comment_text', $question->getCorrectMsg())); ?>
|
212 |
</p>
|
213 |
</div>
|
214 |
+
<div style="display: none;" class="wpProQuiz_incorrect">
|
215 |
<span>
|
216 |
<?php _e('Incorrect', 'wp-pro-quiz'); ?>
|
217 |
</span>
|
228 |
</p>
|
229 |
</div>
|
230 |
</div>
|
231 |
+
<div class="wpProQuiz_tipp" style="display: none;">
|
232 |
<h3><?php _e('Hint', 'wp-pro-quiz'); ?></h3>
|
233 |
<?php
|
234 |
if($question->isTipEnabled()) {
|
236 |
}
|
237 |
?>
|
238 |
</div>
|
239 |
+
<input type="button" name="check" value="<?php _e('Check', 'wp-pro-quiz'); ?>" class="wpProQuiz_QuestionButton" style="float: left !important; margin-right: 10px !important; display: none;">
|
240 |
+
<input type="button" name="back" value="<?php _e('Back', 'wp-pro-quiz'); ?>" class="wpProQuiz_QuestionButton" style="float: left !important; margin-right: 10px !important; display: none;">
|
241 |
<?php if($question->isTipEnabled()) { ?>
|
242 |
+
<input type="button" name="tip" value="<?php _e('Hint', 'wp-pro-quiz'); ?>" class="wpProQuiz_QuestionButton wpProQuiz_TipButton" style="float: left !important; display: inline-block;">
|
243 |
<?php } ?>
|
244 |
+
<input type="button" name="next" value="<?php _e('Next exercise', 'wp-pro-quiz'); ?>" class="wpProQuiz_QuestionButton" style="float: right; display: none;" >
|
245 |
<div style="clear: both;"></div>
|
246 |
</li>
|
247 |
|
lib/view/WpProQuiz_View_QuizOverall.php
CHANGED
@@ -30,6 +30,18 @@ class WpProQuiz_View_QuizOverall extends WpProQuiz_View_View {
|
|
30 |
</style>
|
31 |
<div class="wrap wpProQuiz_quizOverall">
|
32 |
<h2><?php _e('Quiz overview', 'wp-pro-quiz'); ?></h2>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
33 |
<table class="wp-list-table widefat">
|
34 |
<thead>
|
35 |
<tr>
|
30 |
</style>
|
31 |
<div class="wrap wpProQuiz_quizOverall">
|
32 |
<h2><?php _e('Quiz overview', 'wp-pro-quiz'); ?></h2>
|
33 |
+
<div class="updated">
|
34 |
+
<h3><?php _e('In case of problems', 'wp-pro-quiz'); ?></h3>
|
35 |
+
<p>
|
36 |
+
<?php _e('If quiz doesn\'t work in front-end, please try following:', 'wp-pro-quiz'); ?>
|
37 |
+
</p>
|
38 |
+
<p>
|
39 |
+
[raw][WpProQuiz X][/raw]
|
40 |
+
</p>
|
41 |
+
<p>
|
42 |
+
<?php _e('Own themes changes internal order of filters, what causes the problems. With additional shortcode [raw] this is prevented.', 'wp-pro-quiz'); ?>
|
43 |
+
</p>
|
44 |
+
</div>
|
45 |
<table class="wp-list-table widefat">
|
46 |
<thead>
|
47 |
<tr>
|
readme.txt
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
=== Wp-Pro-Quiz ===
|
2 |
Contributors: xeno010
|
3 |
-
Tags: quiz
|
4 |
Requires at least: 3.3
|
5 |
Tested up to: 3.4.2
|
6 |
-
Stable tag: 0.
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
@@ -43,6 +43,15 @@ A powerful and beautiful quiz plugin for WordPress.
|
|
43 |
= Live Demo =
|
44 |
http://www.it-gecko.de/wp-pro-quiz-quiz-plugin-fuer-wordpress.html (scroll to "Demo")
|
45 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
46 |
== Installation ==
|
47 |
|
48 |
1. Upload the wp-pro-quiz folder to the /wp-content/plugins/ directory
|
@@ -61,6 +70,13 @@ http://www.it-gecko.de/wp-pro-quiz-quiz-plugin-fuer-wordpress.html (scroll to "D
|
|
61 |
9. Adminmenu - Create question
|
62 |
10. Adminmenu - Question statistics
|
63 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
64 |
== Changelog ==
|
65 |
|
66 |
= 0.1 =
|
@@ -88,3 +104,6 @@ http://www.it-gecko.de/wp-pro-quiz-quiz-plugin-fuer-wordpress.html (scroll to "D
|
|
88 |
* For every question you can now individually be determined
|
89 |
* Cloze answer type added
|
90 |
* Import / export function added
|
|
|
|
|
|
1 |
=== Wp-Pro-Quiz ===
|
2 |
Contributors: xeno010
|
3 |
+
Tags: quiz, test, answer, question, learning
|
4 |
Requires at least: 3.3
|
5 |
Tested up to: 3.4.2
|
6 |
+
Stable tag: 0.7
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
43 |
= Live Demo =
|
44 |
http://www.it-gecko.de/wp-pro-quiz-quiz-plugin-fuer-wordpress.html (scroll to "Demo")
|
45 |
|
46 |
+
= In case of problems =
|
47 |
+
If quiz doesn’t work in front-end, please try following:<br>
|
48 |
+
[raw][WpProQuiz X][/raw]<br><br>
|
49 |
+
Own themes changes internal order of filters, what causes the problems. With additional shortcode [raw] this is prevented.
|
50 |
+
|
51 |
+
= Support =
|
52 |
+
* English: http://wordpress.org/support/plugin/wp-pro-quiz
|
53 |
+
* German/Deutsch: http://www.it-gecko.de/kontakt
|
54 |
+
|
55 |
== Installation ==
|
56 |
|
57 |
1. Upload the wp-pro-quiz folder to the /wp-content/plugins/ directory
|
70 |
9. Adminmenu - Create question
|
71 |
10. Adminmenu - Question statistics
|
72 |
|
73 |
+
== Frequently Asked Questions ==
|
74 |
+
|
75 |
+
= In case of problems =
|
76 |
+
If quiz doesn’t work in front-end, please try following:<br>
|
77 |
+
[raw][WpProQuiz X][/raw]<br><br>
|
78 |
+
Own themes changes internal order of filters, what causes the problems. With additional shortcode [raw] this is prevented.
|
79 |
+
|
80 |
== Changelog ==
|
81 |
|
82 |
= 0.1 =
|
104 |
* For every question you can now individually be determined
|
105 |
* Cloze answer type added
|
106 |
* Import / export function added
|
107 |
+
|
108 |
+
= 0.7 =
|
109 |
+
* CSS: !important added to all CSS-properties
|
wp-pro-quiz.php
CHANGED
@@ -3,12 +3,12 @@
|
|
3 |
Plugin Name: WP-Pro-Quiz
|
4 |
Plugin URI: http://wordpress.org/extend/plugins/wp-pro-quiz
|
5 |
Description: A powerful and beautiful quiz plugin for WordPress.
|
6 |
-
Version: 0.
|
7 |
Author: Julius Fischer
|
8 |
Author URI: http://www.it-gecko.de
|
9 |
*/
|
10 |
|
11 |
-
define('WPPROQUIZ_VERSION', '0.
|
12 |
|
13 |
include_once 'lib/controller/WpProQuiz_Controller_Admin.php';
|
14 |
include_once 'lib/helper/WpProQuiz_Helper_DbUpgrade.php';
|
3 |
Plugin Name: WP-Pro-Quiz
|
4 |
Plugin URI: http://wordpress.org/extend/plugins/wp-pro-quiz
|
5 |
Description: A powerful and beautiful quiz plugin for WordPress.
|
6 |
+
Version: 0.7
|
7 |
Author: Julius Fischer
|
8 |
Author URI: http://www.it-gecko.de
|
9 |
*/
|
10 |
|
11 |
+
define('WPPROQUIZ_VERSION', '0.7');
|
12 |
|
13 |
include_once 'lib/controller/WpProQuiz_Controller_Admin.php';
|
14 |
include_once 'lib/helper/WpProQuiz_Helper_DbUpgrade.php';
|