Skip to content

Commit 11c73f5

Browse files
committed
Merge pull request #118 from ucfcdl/UDOIT_issue116_117
Issue #116 & #117 Implemented
2 parents b9c6ec3 + 8c5c3c1 commit 11c73f5

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

config/settings.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@
2323
/* Messages */
2424
$udoit_welcome_message = 'The Universal Design Online content Inspection Tool (U<strong>DO</strong>IT) was created by the Center for Distributed Learning at the University of Central Florida. U<strong>DO</strong>IT will scan your course content, generate a report and provide instructions on how to correct accessibility issues. Funding for U<strong>DO</strong>IT was provided by a Canvas Grant awarded in 2014.';
2525

26+
$udoit_disclaimer_message = 'Please Note: This tool is meant to be used as a guide, not a certification. It only checks for common accessibility issues, and is not comprehensive; a clean report in U<strong>DO</strong>IT does not necessarily mean that your course is fully accessible. Likewise, the tool may indicate a possible accessibility issue where one does not exist.';
27+
2628
/* Resource links */
2729
$resource_link = [
2830
'doc' => 'http://webaim.org/techniques/word/',

public/index.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -163,6 +163,7 @@
163163

164164
$render_arr = [
165165
'welcome_message' => $udoit_welcome_message,
166+
'disclaimer_message' => $udoit_disclaimer_message,
166167
'launch_params' => $_SESSION['launch_params'],
167168
'udoit_tests' => $udoit_tests
168169
];

templates/udoit.php

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,6 @@
1313
$this->layout('template', $settings);
1414

1515
?>
16-
<div class="alert alert-warning">
17-
If you have any suggestions on how UDOIT can be improved, please <a href="https://jfe.qualtrics.com/form/SV_es0XFCNS0ymgcD3">leave feedback</a>
18-
</div>
1916
<ul class="nav nav-tabs nav-justified" role="tablist">
2017
<li role="presentation" class="active"><a href="#scanner" role="tab" data-toggle="tab">Scan Course</a></li>
2118
<li role="presentation"><a href="#cached" role="tab" data-toggle="tab">View Old Reports</a></li>
@@ -29,6 +26,8 @@
2926

3027
<p><?=$welcome_message?></p>
3128

29+
<p><?=$disclaimer_message?></p>
30+
3231
<p class="no-margin"><a href="#udoitInfo" class="btn btn-sm btn-default no-print" data-toggle="modal" data-target="#udoitInfo">What does UDOIT look for?</a></p>
3332
</div>
3433
</div>

0 commit comments

Comments
 (0)