Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
integration
prechecker
Commits
2fd42372
Commit
2fd42372
authored
Nov 15, 2016
by
Andrew Nicols
Committed by
Dan Poltawski
Nov 15, 2016
Browse files
Merge branch 'MDL-56846-master' of
git://github.com/damyon/moodle
parents
4f1ba093
64a5bc94
Changes
4
Hide whitespace changes
Inline
Side-by-side
mod/survey/lib.php
View file @
2fd42372
...
...
@@ -627,11 +627,11 @@ function survey_print_single($question) {
if
(
$question
->
type
==
0
)
{
// Plain text field
echo
"<textarea rows=
\"
3
\"
cols=
\"
30
\"
name=
\"
q
$question->id
\"
id=
\"
q
$question->id
\"
>
$question->options
</textarea>"
;
echo
"<textarea rows=
\"
3
\"
cols=
\"
30
\"
class=
\"
form-control
\"
name=
\"
q
$question->id
\"
id=
\"
q
$question->id
\"
>
$question->options
</textarea>"
;
}
else
if
(
$question
->
type
>
0
)
{
// Choose one of a number
$strchoose
=
get_string
(
"choose"
);
echo
"<select name=
\"
q
$question->id
\"
id=
\"
q
$question->id
\"
>"
;
echo
"<select name=
\"
q
$question->id
\"
id=
\"
q
$question->id
\"
class=
\"
custom-select
\"
>"
;
echo
"<option value=
\"
0
\"
selected=
\"
selected
\"
>
$strchoose
...</option>"
;
$options
=
explode
(
","
,
$question
->
options
);
foreach
(
$options
as
$key
=>
$val
)
{
...
...
mod/survey/report.php
View file @
2fd42372
...
...
@@ -472,14 +472,14 @@
echo
"<form action=
\"
report.php
\"
method=
\"
post
\"
>"
;
echo
"<h3>
$strnotes
:</h3>"
;
echo
"<blockquote>"
;
echo
"<textarea name=
\"
notes
\"
rows=
\"
10
\"
cols=
\"
60
\"
>"
;
echo
"<textarea
class=
\"
form-control
\"
name=
\"
notes
\"
rows=
\"
10
\"
cols=
\"
60
\"
>"
;
p
(
$notes
);
echo
"</textarea><br />"
;
echo
"<input type=
\"
hidden
\"
name=
\"
action
\"
value=
\"
student
\"
/>"
;
echo
"<input type=
\"
hidden
\"
name=
\"
sesskey
\"
value=
\"
"
.
sesskey
()
.
"
\"
/>"
;
echo
"<input type=
\"
hidden
\"
name=
\"
student
\"
value=
\"
$student
\"
/>"
;
echo
"<input type=
\"
hidden
\"
name=
\"
id
\"
value=
\"
$cm->id
\"
/>"
;
echo
"<input type=
\"
submit
\"
value=
\"
"
.
get_string
(
"savechanges"
)
.
"
\"
/>"
;
echo
"<input type=
\"
submit
\"
class=
\"
btn btn-primary
\"
value=
\"
"
.
get_string
(
"savechanges"
)
.
"
\"
/>"
;
echo
"</blockquote>"
;
echo
"</form>"
;
echo
"</div>"
;
...
...
mod/survey/view.php
View file @
2fd42372
...
...
@@ -191,7 +191,7 @@ $PAGE->requires->string_for_js('questionsnotanswered', 'survey');
$PAGE
->
requires
->
js_init_call
(
'M.mod_survey.init'
,
$checkarray
,
true
,
$module
);
echo
'<br />'
;
echo
'<input type="submit" value="'
.
get_string
(
"clicktocontinue"
,
"survey"
)
.
'" />'
;
echo
'<input type="submit"
class="btn btn-primary"
value="'
.
get_string
(
"clicktocontinue"
,
"survey"
)
.
'" />'
;
echo
'</div>'
;
echo
"</form>"
;
...
...
theme/boost/scss/moodle/modules.scss
View file @
2fd42372
...
...
@@ -266,13 +266,6 @@ div#dock {
}
}
.resultgraph
,
.reportsummary
,
.studentreport
,
.reportbuttons
,
.centerpara
{
text-align
:
center
;
}
}
.nav
.caret
{
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment