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 @@ ...@@ -24,13 +24,15 @@
Request a <b>new course</b> Request a <b>new course</b>
</a> </a>
</li> </li>
<?php /* li> <li>
<a href="/Request/Create/NewCourseWithIS/<?php echo $this->subject <a href="<?php echo $this->url(array('action' => 'create',
. '/' . $this->courseNumber 'type' => 'NewCourseWithIS',
. '/' . $this->courseLetter; ?>"> 'subject' => $this->subject,
'courseNumber' => $this->courseNumber,
'courseLetter' => $this->courseLetter)); ?>">
Request a <b>new course</b> with <b>Integrated Studies</b> status Request a <b>new course</b> with <b>Integrated Studies</b> status
</a> </a>
</li */ ?> </li>
<li> <li>
<a href="<?php echo $this->url(array('action' => 'create', <a href="<?php echo $this->url(array('action' => 'create',
'type' => 'NewCourseWithACE', 'type' => 'NewCourseWithACE',
......
...@@ -37,13 +37,15 @@ ...@@ -37,13 +37,15 @@
Request <b>change</b> to an existing course Request <b>change</b> to an existing course
</a> </a>
</li> </li>
<?php /*li> <li>
<a href="/Request/Create/AddISToCourse/<?php echo $this->subject <a href="<?php echo $this->url(array('action' => 'create',
. '/' . $this->courseNumber 'type' => 'AddISToCourse',
. '/' . $this->courseLetter; ?>"> 'subject' => $this->subject,
'courseNumber' => $this->courseNumber,
'courseLetter' => $this->courseLetter)); ?>">
Request <b>Integrated Studies</b> status for this course Request <b>Integrated Studies</b> status for this course
</a> </a>
</li */ ?> </li>
<?php if (!$this->isAce) { ?> <?php if (!$this->isAce) { ?>
<li> <li>
<a href="<?php echo $this->url(array('action' => 'create', <a href="<?php echo $this->url(array('action' => 'create',
......
...@@ -12,7 +12,7 @@ $this->layout()->tagline = $tagline . ': ' . $this->course->getCourseCode() . ' ...@@ -12,7 +12,7 @@ $this->layout()->tagline = $tagline . ': ' . $this->course->getCourseCode() . '
<div id="viewRequest"> <div id="viewRequest">
<?php <?php
$course = $this->course; $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; $parentCourse = $this->parentCourse;
/****************************CHANGE COURSE*************************************/ /****************************CHANGE COURSE*************************************/
?> ?>
...@@ -50,9 +50,9 @@ $this->layout()->tagline = $tagline . ': ' . $this->course->getCourseCode() . ' ...@@ -50,9 +50,9 @@ $this->layout()->tagline = $tagline . ': ' . $this->course->getCourseCode() . '
if (in_array($this->request->getType(), array('NewCourseWithACE', 'AddACEToCourse', 'AddACEAndChangeCourse', 'RemoveACEFromCourse', 'RemoveACEAndChangeCourse'))) { if (in_array($this->request->getType(), array('NewCourseWithACE', 'AddACEToCourse', 'AddACEAndChangeCourse', 'RemoveACEFromCourse', 'RemoveACEAndChangeCourse'))) {
?> ?>
<div> <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) { ?> <?php foreach ($course->getAceOutcomes() as $aceOutcome) { ?>
<div> <div>
<?php echo $aceOutcome['slo']; ?>: <?php echo $aceOutcome['slo']; ?>:
......
...@@ -69,6 +69,11 @@ ...@@ -69,6 +69,11 @@
color:#880000; color:#880000;
text-decoration:line-through; text-decoration:line-through;
} }
#aceHeading {
font-style: italic;
}
div#comments .tabBar a { div#comments .tabBar a {
-moz-border-radius-bottomleft:0px; -moz-border-radius-bottomleft:0px;
-moz-border-radius-bottomright: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