Skip to content
Snippets Groups Projects
Commit fc82cec4 authored by Tim Steiner's avatar Tim Steiner
Browse files

Re-add option to create new courses with IS or ad IS to existing courses.

parent 39b9a2a6
No related branches found
No related tags found
No related merge requests found
......@@ -24,13 +24,15 @@
Request a <b>new course</b>
</a>
</li>
<?php /* li>
<a href="/Request/Create/NewCourseWithIS/<?php echo $this->subject
. '/' . $this->courseNumber
. '/' . $this->courseLetter; ?>">
<li>
<a href="<?php echo $this->url(array('action' => 'create',
'type' => 'NewCourseWithIS',
'subject' => $this->subject,
'courseNumber' => $this->courseNumber,
'courseLetter' => $this->courseLetter)); ?>">
Request a <b>new course</b> with <b>Integrated Studies</b> status
</a>
</li */ ?>
</li>
<li>
<a href="<?php echo $this->url(array('action' => 'create',
'type' => 'NewCourseWithACE',
......
......@@ -37,13 +37,15 @@
Request <b>change</b> to an existing course
</a>
</li>
<?php /*li>
<a href="/Request/Create/AddISToCourse/<?php echo $this->subject
. '/' . $this->courseNumber
. '/' . $this->courseLetter; ?>">
<li>
<a href="<?php echo $this->url(array('action' => 'create',
'type' => 'AddISToCourse',
'subject' => $this->subject,
'courseNumber' => $this->courseNumber,
'courseLetter' => $this->courseLetter)); ?>">
Request <b>Integrated Studies</b> status for this course
</a>
</li */ ?>
</li>
<?php if (!$this->isAce) { ?>
<li>
<a href="<?php echo $this->url(array('action' => 'create',
......
......@@ -12,7 +12,7 @@ $this->layout()->tagline = $tagline . ': ' . $this->course->getCourseCode() . '
<div id="viewRequest">
<?php
$course = $this->course;
if (in_array($this->request->getType(), array('ChangeCourse', 'AddACEAndChangeCourse', 'RemoveACEAndChangeCourse'))) {
if (in_array($this->request->getType(), array('ChangeCourse', 'AddISToCourse', 'AddACEAndChangeCourse', 'RemoveACEAndChangeCourse'))) {
$parentCourse = $this->parentCourse;
/****************************CHANGE COURSE*************************************/
?>
......@@ -50,9 +50,9 @@ $this->layout()->tagline = $tagline . ': ' . $this->course->getCourseCode() . '
if (in_array($this->request->getType(), array('NewCourseWithACE', 'AddACEToCourse', 'AddACEAndChangeCourse', 'RemoveACEFromCourse', 'RemoveACEAndChangeCourse'))) {
?>
<div>
<h2>Ace Certification</h2>
<h2 id="aceHeading">Ace Course Proposal</h2>
<h3>Outcomes</h3>
<h3>Outcome(s)</h3>
<?php foreach ($course->getAceOutcomes() as $aceOutcome) { ?>
<div>
<?php echo $aceOutcome['slo']; ?>:
......
......@@ -69,6 +69,11 @@
color:#880000;
text-decoration:line-through;
}
#aceHeading {
font-style: italic;
}
div#comments .tabBar a {
-moz-border-radius-bottomleft:0px;
-moz-border-radius-bottomright:0px;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment