Select Git revision
index.phtml
index.phtml 44.59 KiB
<?php $this->headLink()->appendStylesheet($this->baseUrl() . '/css/courses/edit.css', 'all'); ?>
<?php $this->headScript()->appendFile($this->baseUrl() . '/tinymce/jscripts/tiny_mce/tiny_mce.js'); ?>
<?php $this->headScript()->appendFile($this->baseUrl() . '/javascript/tinymce.js'); ?>
<?php $this->headScript()->appendFile($this->baseUrl() . '/javascript/courses/edit.js'); ?>
<?php $this->layout()->breadcrumbs = array('Editing: ' . $this->course->getCourseCode() . ' (' . $this->request->getTypeDescription() . ')'); ?>
<script type="text/javascript">
document.formSessionId = '<?php echo $this->formSessionId; ?>';
</script>
<div id="popups" style="display: none;">
<div id="dialog" title="Consistency Warning"></div>
</div>
<div class="one_col left">
<?php echo $this->partial('edit/bulletin-preview.phtml', $this); ?>
</div>
<div class="three_col right">
<div id="helpLinkBox"><a href="<?php echo $this->baseUrl(); ?>/courses/edit/help" target="helpWindow">Course Request Policies</a></div>
<form action="<?php echo $this->url(array('action' => 'edit.post')); ?>" enctype="multipart/form-data" method="post">
<?php if (!in_array($this->request->getType(), array('RemoveCourse', 'AddACEToCourse', 'RemoveACEFromCourse', 'ChangeACE'))) { ?>
<div class="main_section">
<h2>Course ID</h2>
<fieldset class="three_column" id="courseId">
<div class="column">
<label for="subject" class="required">Subject Code:</label>
<input type="text"
id="subject"
name="subject"
class="courseCodeInput"
value="<?php echo htmlentities($this->course->getSubject(), ENT_COMPAT, 'UTF-8'); ?>" />
</div>
<div class="column">
<label for="courseNumber" class="required">Course Number:</label>
<input type="text"
id="courseNumber"
name="courseNumber"
class="courseCodeInput courseNumberInput"
value="<?php echo htmlentities($this->course->getCourseNumber(), ENT_COMPAT, 'UTF-8'); ?>" />
</div>
<div class="column">
<label for="courseLetter">Alpha Suffix:</label>
<input type="text"
id="courseLetter"
name="courseLetter"
class="courseCodeInput courseLetterInput"
value="<?php echo htmlentities($this->course->getCourseLetter(), ENT_COMPAT, 'UTF-8'); ?>" />
</div>
<div class="clear"></div>
</fieldset>
<fieldset>
<label for="title" class="required">Course Title:</label>
<input type="text" id="courseTitle" name="title" value="<?php echo $this->course->getTitle(); ?>" />
<div class="clear"></div>
</fieldset>
</div>
<div class="main_section">
<h2>Crosslistings</h2>
<fieldset class="three_column">
<table id="crosslistingsTable">
<?php $hasTieIn = false;
foreach($this->course->getCrosslistings() as $key => $crosslist) {
if($crosslist['type'] == 'grad tie-in') { $hasTieIn = true; }
if($crosslist['type'] != 'home listing') { ?>
<tr <?php if($crosslist['type'] == 'grad tie-in') { ?>class="grad_tie_in_row"<?php } ?>>
<th> Subject: </th>
<td> <input type="hidden"
name="crosslistings[<?php echo $key; ?>][action]"
value="edit"
<?php if($crosslist['type'] == 'grad tie-in') { ?>readonly="readonly"<?php } ?>/>
<input type="text"
name="crosslistings[<?php echo $key; ?>][subject]"
class="courseCodeInput"
value="<?php echo $crosslist['subject']; ?>"
<?php if($crosslist['type'] == 'grad tie-in') { ?>readonly="readonly"<?php } ?>/> </td>
<th> Course Number: </th>
<td> <input type="text"
name="crosslistings[<?php echo $key; ?>][courseNumber]"
class="courseCodeInput courseNumberInput"
value="<?php echo $crosslist['courseNumber']; ?>"
<?php if($crosslist['type'] == 'grad tie-in') { ?>readonly="readonly"<?php } ?> /> </td>
<th> Course Letter: </th>
<td> <input type="text"
name="crosslistings[<?php echo $key; ?>][courseLetter]"
class="courseCodeInput courseLetterInput"
value="<?php echo $crosslist['courseLetter']; ?>"
<?php if($crosslist['type'] == 'grad tie-in') { ?>readonly="readonly"<?php } ?> /> </td>
<td class="hidden">
<input type="hidden"
name="crosslistings[<?php echo $key; ?>][type]"
value="<?php echo $crosslist['type']; ?>" />
</td>
<td> <input type="checkbox"
id="crosslistings_<?php echo $key; ?>_delete"
name="crosslistings[<?php echo $key; ?>][delete]"
value="yes" />
<label for="crosslistings_<?php echo $key; ?>_delete">Remove</label>
</td>
</tr>
<?php } } ?>
<tr class="hidden_new_record">
<th> Subject: </th>
<td> <input disabled="disabled" type="text" class="courseCodeInput" name="crosslistings[__key__][subject]" /> </td>
<th> Course Number: </th>
<td> <input disabled="disabled" type="text" class="courseCodeInput courseNumberInput" name="crosslistings[__key__][courseNumber]" /> </td>
<th> Course Letter: </th>
<td> <input disabled="disabled" type="text" class="courseCodeInput courseLetterInput" name="crosslistings[__key__][courseLetter]" /> </td>
<td class="hidden"> <input disabled="disabled" type="hidden" name="crosslistings[__key__][type]" value="crosslisting" /> </td>
<td> <a href="#" class="remove_record_button">Remove</a> </td>
</tr>
<tr>
<td colspan="4">
<a href="#" class="add_record_button"><img src="<?php echo $this->baseUrl(); ?>/images/cross_listing_button.png" alt="Add Crosslisting" /></a><br />
<?php if(!$hasTieIn) { ?>
<a href="#"
class="add_record_button"
id="add_tie_in_button_<?php echo $this->course->getSubject()
. '_' . $this->course->getCourseNumber()
. '_' . $this->course->getCourseLetter(); ?>"
>
<img src="<?php echo $this->baseUrl(); ?>/images/grad_tie_button.png" alt="Add Graduate Tie-In" />
</a>
<?php } ?>
</td>
</tr>
</table>
</fieldset>
</div>
<div class="main_section">
<h2>Activity</h2>
<fieldset class="two_of_three_column" id="activities">
<table>
<?php if (count($this->course->getActivities()) == 0) { ?>
<tr>
<th> Type </th>
<td>
<select name="activities[-1][type]">
<option value="-1">--Select One--</option>
<option value="lec">Lecture</option>
<option value="lab">Lab</option>
<option value="quz">Quiz</option>
<option value="rct">Recitation</option>
<option value="stu">Studio</option>
<option value="fld">Field</option>
<option value="ind">Independent Study</option>
<option value="psi">P.S.I.</option>
</select>
</td>
<th> Hours per week </th>
<td> <input type="text"
name="activities[-1][hours]" /> </td>
<td> <a href="#" class="remove_record_button">Remove</a> </td>
</tr>
<?php } ?>
<?php foreach($this->course->getActivities() as $key => $activity) { ?>
<tr>
<th> Type </th>
<td>
<select name="activities[<?php echo $key; ?>][type]" class="activitySelect">
<option value="-1">--Select One--</option>
<option value="lec"
<?php if($activity['type'] == 'lec') { ?>selected="selected"<?php } ?>
>Lecture</option>
<option value="lab"
<?php if($activity['type'] == 'lab') { ?>selected="selected"<?php } ?>
>Lab</option>
<option value="quz"
<?php if($activity['type'] == 'quz') { ?>selected="selected"<?php } ?>
>Quiz</option>
<option value="rct"
<?php if($activity['type'] == 'rct') { ?>selected="selected"<?php } ?>
>Recitation</option>
<option value="stu"
<?php if($activity['type'] == 'stu') { ?>selected="selected"<?php } ?>
>Studio</option>
<option value="fld"
<?php if($activity['type'] == 'fld') { ?>selected="selected"<?php } ?>
>Field</option>
<option value="ind"
<?php if($activity['type'] == 'ind') { ?>selected="selected"<?php } ?>
>Independent Study</option>
<option value="psi"
<?php if($activity['type'] == 'psi') { ?>selected="selected"<?php } ?>
>P.S.I.</option>
</select>
</td>
<th> Hours per week </th>
<td> <input type="text"
name="activities[<?php echo $key; ?>][hours]"
value="<?php echo $activity['hours']; ?>" /> </td>
<th> Remove </th>
<td> <input type="checkbox"
name="activities[<?php echo $key; ?>][delete]"
value="yes" /> </td>
</tr>
<?php } ?>
<tr class="hidden_new_record">
<th> Type </th>
<td>
<select disabled="disabled" name="activities[__key__][type]" class="activitySelect">
<option value="-1">--Select One--</option>
<option value="lec">Lecture</option>
<option value="lab">Lab</option>
<option value="quz">Quiz</option>
<option value="rct">Recitation</option>
<option value="stu">Studio</option>
<option value="fld">Field</option>
<option value="ind">Independent Study</option>
<option value="psi">P.S.I.</option>
</select>
</td>
<th> Hours per week </th>
<td> <input disabled="disabled" type="text" name="activities[__key__][hours]" /> </td>
<td> <a href="#" class="remove_record_button">Remove</a> </td>
</tr>
<tr>
<td colspan="3">
<a href="#" class="add_record_button">Add Activity</a>
</td>
</tr>
</table>
</fieldset>
</div>
<div class="main_section">
<h2>Credit Hours</h2>
<div class="two_column">
<fieldset id="credits" class="column">
<h3 class="required">Credit (leave blank if not defined)</h3>
<div>
<label for="creditsSingleValues">Single Values</label>
<input type="text"
name="credits[1]"
id="creditsSingleValues"
value="<?php echo $this->course->getCredits(Courses_CourseModel::CREDIT_TYPE_SINGLE); ?>" />
</div>
<div>
<label>Range</label>
<input type="text"
name="credits[2]"
id="creditsRangeMin"
value="<?php echo $this->course->getCredits(Courses_CourseModel::CREDIT_TYPE_RANGE_MIN); ?>" /> -
<input type="text"
name="credits[3]"
id="creditsRangeMax"
value="<?php echo $this->course->getCredits(Courses_CourseModel::CREDIT_TYPE_RANGE_MAX); ?>" />
</div>
<div>
<label>Max per Semester</label>
<input type="text"
name="credits[4]"
id="creditsSemesterMax"
value="<?php echo $this->course->getCredits(Courses_CourseModel::CREDIT_TYPE_SEMESTER_MAX); ?>" />
</div>
<div>
<label>Max per Degree</label>
<input type="text"
name="credits[5]"
id="creditsDegreeMax"
value="<?php echo $this->course->getCredits(Courses_CourseModel::CREDIT_TYPE_DEGREE_MAX); ?>" />
</div>
</fieldset>
<fieldset class="three_column column">
<h3>Terms Offered<br />(Remove terms never taught)</h3>
<label>
<input type="checkbox"
name="termsOffered[]"
value="Fall"
<?php if(in_array('Fall', $this->course->getTermsOffered())) { ?>
checked="checked"
<?php } ?>
/>
Fall
</label>
<br />
<label>
<input type="checkbox"
name="termsOffered[]"
value="Spring"
<?php if(in_array('Spring', $this->course->getTermsOffered())) { ?>
checked="checked"
<?php } ?>
/>
Spring
</label>
<br />
<label>
<input type="checkbox"
name="termsOffered[]"
value="Summer"
<?php if(in_array('Summer', $this->course->getTermsOffered())) { ?>
checked="checked"
<?php } ?>
/>
Summer
</label>
</fieldset>
</div>
<div class="clear"></div>
</div>
<div class="main_section">
<h2>Prerequisite</h2>
<fieldset>
<textarea id="prerequisite" name="prerequisite" class="mceEditor"><?php echo $this->course->getPrerequisite(); ?></textarea>
</fieldset>
<div class="clear"></div>
</div>
<div class="main_section">
<h2>Notes</h2>
<fieldset>
<textarea id="notes" name="notes" class="mceEditor"><?php echo $this->course->getNotes(); ?></textarea>
</fieldset>
</div>
<div class="main_section">
<h2>Description</h2>
<fieldset>
<textarea id="description" name="description" class="mceEditor"><?php echo $this->course->getDescription(); ?></textarea>
</fieldset>
<div class="clear"></div>
</div>
<div class="main_section two_column" id="credits_and_terms_section">
<h2>Additional Information</h2>
<fieldset class="four_column">
<div class="legend">Grading:</div>
<div class="column">
<input type="radio"
class="radio"
id="gradingType_unrestricted"
name="gradingType"
value="unrestricted"
<?php if($this->course->getGradingType() == 'unrestricted') { ?>
checked="checked"
<?php } ?>
/>
<label for="gradingType_unrestricted">Unrestricted</label>
</div>
<div class="column">
<input type="radio"
class="radio"
id="gradingType_letter_grade_only"
name="gradingType"
value="letter grade only"
<?php if($this->course->getGradingType() == 'letter grade only') { ?>
checked="checked"
<?php } ?>
/>
<label for="gradingType_letter_grade_only">Letter Grade Only</label>
</div>
<div class="column">
<input type="radio"
class="radio"
id="gradingType_pass_no_pass_only"
name="gradingType"
value="pass/no pass only"
<?php if($this->course->getGradingType() == 'pass/no pass only') { ?>
checked="checked"
<?php } ?>
/>
<label for="gradingType_pass_no_pass_only">Pass / No Pass Only</label>
</div>
<div class="clear"></div>
</fieldset>
<?php if (!in_array($this->request->getType(), array('NewCourse', 'NewCourseWithIS', 'NewCourseWithACE'))) { ?>
<fieldset class="four_column">
<div class="legend">DF Removal:</div>
<div class="column">
<input type="radio"
id="dfRemoval_no"
class="radio dfRemovalRadio"
name="dfRemoval"
value="no"
<?php if($this->course->getDfRemoval() == 'no') { ?>
checked="checked"
<?php } ?>
/>
<label for="dfRemoval_no">No</label>
</div>
<div class="column">
<input type="radio"
id="dfRemoval_yes"
class="radio dfRemovalRadio"
name="dfRemoval"
value="yes"
<?php if($this->course->getDfRemoval() == 'yes') { ?>
checked="checked"
<?php } ?>
/>
<label for="dfRemoval_yes">Yes</label>
</div>
<div class="clear"></div>
</fieldset>
<?php } else { ?>
<input type="hidden" name="dfRemoval" value="no" />
<?php } ?>
<!-- fieldset id="dfRemovalFieldset">
<div class="legend">DF Removal:</div>
<div class="selections">
<div>
<input type="radio"
id="dfRemoval_no"
class="radio"
name="dfRemoval"
value="no"
<?php if($this->course->dfRemoval == 'no') { ?>
checked="checked"
<?php } ?>
/>
<label for="dfRemoval_no">No</label>
</div>
<div>
<input type="radio"
id="dfRemoval_yes"
class="radio"
name="dfRemoval"
value="yes"
<?php if($this->course->dfRemoval == 'yes') { ?>
checked="checked"
<?php } ?>
/>
<label for="dfRemoval_yes">Yes, previous version of this course</label>
</div>
<div>
<input type="radio"
id="dfRemoval_yes"
class="radio"
name="dfRemoval"
value="yes"
<?php if($this->course->dfRemoval == 'yes') { ?>
checked="checked"
<?php } ?>
/>
<label for="dfRemoval_yes">Yes, the following course:</label>
</div>
<div id="dfRemovalCourseId">
<?php /*echo $this->formSelect('dfRemovalSubject', null, null, Subjects::getInstance()->getSubjectList()); ?>
<?php echo $this->formSelect('dfRemovalCourseNumber'); ?>
<?php echo $this->formSelect('dfRemovalCourseLetter'); ?>
<?php echo $this->formSelect('dfRemovalLastEffectiveSemester'); */ ?>
</div>
</div>
<div class="clear"></div>
</fieldset -->
<fieldset class="four_column">
<div class="legend required">Delivery Method(s):</div>
<div class="column">
<input type="checkbox"
class="deliveryMethodsInput"
id="deliveryMethods_classroom"
name="deliveryMethods[]"
value="Classroom"
<?php if(in_array('Classroom', $this->course->getDeliveryMethods())) { ?>
checked="checked"
<?php } ?>
/>
<label for="deliveryMethods_classroom">Classroom</label>
</div>
<div class="column">
<input type="checkbox"
class="deliveryMethodsInput"
id="deliveryMethods_web"
name="deliveryMethods[]"
value="Web"
<?php if(in_array('Web', $this->course->getDeliveryMethods())) { ?>
checked="checked"
<?php } ?>
/>
<label for="deliveryMethods_web">Web</label>
</div>
<div class="clear"></div>
</fieldset>
<fieldset class="four_column" id="campuses">
<div class="legend required">Campus(es)</div>
<div class="column">
<input type="checkbox"
id="campuses_unl"
name="campuses[]"
value="UNL"
<?php if(in_array('UNL', $this->course->getCampuses())) { ?>
checked="checked"
<?php } ?>
/>
<label for="campuses_unl">UNL</label>
</div>
<div class="column">
<input type="checkbox"
id="campuses_uno"
name="campuses[]"
value="UNO"
<?php if(in_array('UNO', $this->course->getCampuses())) { ?>
checked="checked"
<?php } ?>
/>
<label for="campuses_uno">UNO</label>
</div>
<div class="column">
<input type="checkbox"
id="campuses_unmc"
name="campuses[]"
value="UNMC"
<?php if(in_array('UNMC', $this->course->getCampuses())) { ?>
checked="checked"
<?php } ?>
/>
<label for="campuses_unmc">UNMC</label>
</div>
<div class="column"> <!-- spacer --></div>
<div class="column">
<input type="checkbox"
id="campuses_unk"
name="campuses[]"
value="UNK"
<?php if(in_array('UNK', $this->course->getCampuses())) { ?>
checked="checked"
<?php } ?>
/>
<label for="campuses_unk">UNK</label>
</div>
<div class="clear"></div>
</fieldset>
<fieldset class="four_column">
<div class="legend">ACE/IS/ES Status</div>
<div class="column">
<input type="hidden"
name="__integratedStudies"
disabled="disabled"
value="no" />
<input type="checkbox"
name="__integratedStudies"
disabled="disabled"
<?php if ($this->course->isAce()) { ?>
checked="checked"
<?php } ?>
/>
<label>ACE</label>
</div>
<div class="column">
<input type="hidden"
name="__integratedStudies"
disabled="disabled"
value="no" />
<input type="checkbox"
name="__integratedStudies"
disabled="disabled"
<?php if ($this->course->isIntegratedStudies()) { ?>
checked="checked"
<?php } ?>
/>
<label>Integrated Studies</label>
</div>
<div class="column">
<input type="hidden"
name="__essentialStudies"
disabled="disabled"
value="no" />
<input type="checkbox"
name="__essentialStudies"
disabled="disabled"
<?php if ($this->course->isEssentialStudies()) { ?>
checked="checked"
<?php } ?>
/>
<label>Essential Studies</label>
</div>
<div class="clear"></div>
</fieldset>
<fieldset class="four_column">
<div class="legend">Effective Term</div>
<div class="column">
<?php
echo $this->formSelect(
'effectiveSemester',
$this->course->getEffectiveSemester(),
array('id' => 'effectiveSemester'),
$this->terms
);
?>
</div>
</fieldset>
<div class="clear"></div>
</div>
<!--
<?php $gradTieIn = $this->course->getGradTieIn(); ?>
<div class="main_section">
<h2>Graduate Tie-In</h2>
<fieldset>
<label>
Credits<br />
<input type="text" name="gradTieIn[credits]" value="<?php echo $gradTieIn['credits']; ?>" /><br />
</label>
<label>
Prereq<br />
<textarea name="gradTieIn[prerequisites]" class="mceEditor"><?php echo $gradTieIn['prerequisites']; ?></textarea><br />
</label>
<label>
Notes<br />
<textarea name="gradTieIn[notes]" class="mceEditor"><?php echo $gradTieIn['notes']; ?></textarea>
</label>
</fieldset>
</div>
-->
<?php } // if not a remove course request ?>
<?php if (!in_array($this->request->getType(), array('AddACEToCourse', 'RemoveACEFromCourse', 'ChangeACE'))) { ?>
<div class="main_section">
<h2 class="required">
Justification
<?php if ($this->request->getType() == 'NewCourseWithACE') { ?>
for new course
<?php } else if ($this->request->getType() == 'AddACEAndChangeCourse') { ?>
for change to an existing course
<?php } ?>
</h2>
<fieldset>
<label>
<textarea name="request[justification]" class="mceEditor"><?php echo $this->request->getJustification(); ?></textarea>
</label>
</fieldset>
</div>
<?php } ?>
<?php
if (in_array($this->request->getType(), array('NewCourseWithACE', 'AddACEToCourse', 'AddACEAndChangeCourse', 'ChangeACE'))) {
?>
<div class="main_section" id="aceSection">
<h2>ACE Certification</h2>
<div>
In its review of requests for ACE certification, the UCC ACE subcommittee
will use such criteria as:
<ul>
<li>
Does the course clearly address the Learning Outcome(s) identified?
</li>
<li>
Does the course provide students with opportunities to develop the
knowledge/skills necessary for successful achievement of the Learning
Outcome(s)?
</li>
<li>
Does the course provide students with opportunities to demonstrate
achievement of the Learning Outcome(s)?
</li>
<li>
Does the course reinforce at least one of the following as appropriate
for the discipline and as identified by the department offering
the course: Writing, Oral Communication, Visual Literacy, Historical
Perspectives, Mathematics and Statistics, Critical Thinking, Teamwork,
Problem Solving, Ethics, Civics, Social Responsibility, Global Awareness,
or Human Diversity?
</li>
<li>
Have the hosting department/unit and the instructor(s) agreed to
follow through with their responsibilities as outlined in the ACE
Course Certification Request Form?
</li>
</ul>
</div>
<div class="required">
Students select which one outcome they will receive ACE credit for. Faculty
should indicate which one or two ACE Learning Outcome(s) are satisfied by
the course.
</div>
<fieldset class="wideOption">
<ul id="aceOutcomeList">
<?php foreach(Courses_CourseModel::getAceOutcomeDataWithSloKey() as $sloKey => $outcome) { ?>
<?php $outcomeData = $this->course->getAceOutcomeByShortName($outcome['shortName']); ?>
<li>
<?php if ($sloKey == 'SLO1') { ?>
<div class="sloCategoryDescription">
Develop intellectual and practical <b>skills</b>, including proficiency
in written, oral, and visual communication; inquiry techniques;
critical and creative thinking; quantitative applications; information
assessment; teamwork; and problem-solving.
</div>
<?php } else if ($sloKey == 'SLO4') { ?>
<div class="sloCategoryDescription">
Build <b>knowledge</b> of diverse peoples and cultures and of the
natural and physical world through study of mathematics, sciences
and technologies, histories, humanities, arts, social sciences,
and human diversity.
</div>
<?php } else if ($sloKey == 'SLO8') { ?>
<div class="sloCategoryDescription">
Exercise individual and social <b>responsibilities</b> through the
study of ethical principles and reasoning, application of civic
knowledge, interaction with diverse cultures, and engagement with
global issues.
</div>
<?php } else if ($sloKey == 'SLO10') { ?>
<div class="sloCategoryDescription">
<b>Integrate</b> these abilities and capacities, adapting them to
new settings, questions, and responsibilities.
</div>
<?php } ?>
<label for="ace[outcomes][<?php echo $outcome['shortName']; ?>][enabled]">
<?php echo $sloKey; ?>.
<?php echo $this->formCheckbox('ace[outcomes][' . $outcome['shortName'] . '][enabled]', '1', array('checked' => is_array($outcomeData))); ?>
<?php echo $outcome['description']; ?>
</label>
<span <?php if (!is_array($outcomeData)) { ?>style="display: none;"<?php } ?>>
<br />
<br />
<label class="required">
Describe opportunities students should have to learn the outcome.<br />
How is the learning objective embedded in the course?
</label>
<br />
<textarea id="mceEditor<?php echo ++$mceEditorCount; ?>" class="mceEditor" name="ace[outcomes][<?php echo $outcome['shortName']; ?>][justification]"><?php echo $outcomeData['justification']; ?></textarea>
<br />
<label class="required">
Describe student work that will be used to assess student achievement
of the outcome and explain how the students demonstrate the knowledge
and skills specified by the outcome.
</label>
<br />
<textarea id="mceEditor<?php echo ++$mceEditorCount; ?>" class="mceEditor" name="ace[outcomes][<?php echo $outcome['shortName']; ?>][studentWork]"><?php echo $outcomeData['studentWork']; ?></textarea>
<br />
<label class="required">
As part of the ACE certification process, the department/unit agrees to
collect and assess a reasonable sample of students' work and provide
reflections on students' achievement of the Learning Outcomes for its
respective ACE-certified courses.<br />
Please comment on your plans to develop a process to collect and evaluate
student work over time for the purpose of assessing student success for
this ACE outcome.
</label>
<br />
<textarea id="mceEditor<?php echo ++$mceEditorCount; ?>" class="mceEditor" name="ace[outcomes][<?php echo $outcome['shortName']; ?>][assesmentPlan]"><?php echo $outcomeData['assesmentPlan']; ?></textarea>
</span>
</li>
<?php } ?>
</ul>
</fieldset>
<fieldset>
<div class="required">
What Outcome(s) or skill(s) will be reinforced in this course?
</div>
<div id="reinforcementDescription">
According to the ACE document approved by faculty (Structural Criteria,
item 9), "Every ACE course will reinforce at least one of the following
skills listed below as appropriate for the discipline and as identified
by the department offering the course..." Indicate skills that will be reinforced
by the course by clicking on as many as apply and describe briefly how those
skills will be reinforced.<br /><br />
<b>These areas are those <em>OTHER THAN</em> the one or two outcomes for
which you seek ACE certification. Students will not receive ACE credit for
the reinforced skills, and the reinforced skills do not need to be assessed
for ACE purposes.</b>
</div>
<ul id="aceReinforcementList">
<?php foreach (Courses_CourseModel::getAceReinforcementNames() as $shortName => $longName) { ?>
<?php $reinforcementData = $this->course->getAceReinforcementByShortName($shortName); ?>
<li>
<label for="ace[reinforcements][<?php echo $shortName; ?>][enabled]">
<?php echo $this->formCheckbox('ace[reinforcements][' . $shortName . '][enabled]', '1', array('checked' => is_array($reinforcementData))); ?>
<?php echo $longName; ?>
</label>
<span <?php if (!$reinforcementData) { ?>style="display: none;"<?php } ?>>
<br /><br />
<label class="required">Describe briefly how this skill will be reinforced.</label><br />
<textarea id="mceEditor<?php echo ++$mceEditorCount; ?>" class="mceEditor" name="ace[reinforcements][<?php echo $shortName; ?>][description]"><?php echo $reinforcementData['description']; ?></textarea>
</span>
</li>
<?php } ?>
</ul>
</fieldset>
</div>
<?php } ?>
<div class="main_section">
<h2>Required Material</h2>
<fieldset>
<?php if (in_array($this->request->getType(), array('NewCourse', 'NewCourseWithIS', 'NewCourseWithACE', 'AddACEToCourse', 'AddACEAndChangeCourse', 'ChangeACE'))) { ?>
<h3 class="required">Syllabus (Required)</h3>
<?php } else { ?>
<h3>Syllabus</h3>
<?php } ?>
<table>
<?php foreach ($this->request->getFiles(Requests_RequestModel::FILE_TYPE_SYLLABUS) as $key => $syllabus) { ?>
<tr>
<td>
<?php
if ($syllabus) {
if ($syllabus['file']) { ?>
<a href="<?php echo $this->baseUrl(); ?>/requests/view/get-file/fileId/<?php echo $syllabus['file']; ?>">
<?php } else { ?>
<a href="<?php echo $this->baseUrl(); ?>/requests/view/get-file/fileId/session/id/<?php echo $key; ?>">
<?php }
echo htmlspecialchars($syllabus['title']);
echo '</a>';
}
?>
</td>
<td class="hidden"> <input type="hidden" name="files[<?php echo $key ?>][type]" value="<?php echo Requests_RequestModel::FILE_TYPE_SYLLABUS; ?>" /> </td>
<td>
Remove:
<input type="checkbox"
name="files[<?php echo $key; ?>][delete]"
value="yes" />
</td>
</tr>
<?php } ?>
<tr class="hidden_new_record">
<td> <input disabled="disabled" type="file" name="files[<?php echo Requests_RequestModel::FILE_TYPE_SYLLABUS; ?>][__key__]" /> </td>
<td> <a href="#" class="remove_record_button">Remove</a> </td>
</tr>
<tr>
<td colspan="3">
<a href="#" class="add_record_button">Add File</a>
</td>
</tr>
</table>
<?php if (in_array($this->request->getType(), array('NewCourseWithACE', 'AddACEToCourse', 'AddACEAndChangeCourse', 'ChangeACE'))) { ?>
<div>
Attach a copy of the representative syllabus that clearly identifies:
<ul>
<li>
The Learning Outcome(s) that are satisfied by the course.
</li>
<li>
A brief description of the opportunities this course provides students
to acquire the knowledge or skills necessary to achieve the Learning
Outcome(s)
</li>
<li>
A brief description of the graded assignments that the instructor(s)
uses to assess the students' achievement of the Outcome(s).
</li>
</ul>
</div>
<?php } ?>
</fieldset>
</div>
<div class="main_section">
<h2>Supportive Material</h2>
<fieldset>
<h3>Crosslist Memo (Required if applicable)</h3>
<table>
<?php foreach ($this->request->getFiles(Requests_RequestModel::FILE_TYPE_CROSSLIST_MEMO) as $key => $syllabus) { ?>
<tr>
<td>
<?php
if ($syllabus) {
if ($syllabus['file']) { ?>
<a href="<?php echo $this->baseUrl(); ?>/requests/view/get-file/fileId/<?php echo $syllabus['file']; ?>">
<?php } else { ?>
<a href="<?php echo $this->baseUrl(); ?>/requests/view/get-file/fileId/session/id/<?php echo $key; ?>">
<?php }
echo htmlspecialchars($syllabus['title']);
echo '</a>';
}
?>
</td>
<td class="hidden"> <input type="hidden" name="files[<?php echo $key ?>][type]" value="<?php echo Requests_RequestModel::FILE_TYPE_CROSSLIST_MEMO; ?>" /> </td>
<td>
Remove:
<input type="checkbox"
name="files[<?php echo $key; ?>][delete]"
value="yes" />
</td>
</tr>
<?php } ?>
<tr class="hidden_new_record">
<td> <input disabled="disabled" type="file" name="files[<?php echo Requests_RequestModel::FILE_TYPE_CROSSLIST_MEMO; ?>][__key__]" /> </td>
<td> <a href="#" class="remove_record_button">Remove</a> </td>
</tr>
<tr>
<td colspan="3">
<a href="#" class="add_record_button">Add File</a>
</td>
</tr>
</table>
<?php if (in_array($this->request->getType(), array('NewCourseWithACE', 'AddACEToCourse', 'AddACEAndChangeCourse'))) { ?>
<div>
If the course proposed for ACE certification is cross-listed, include a
letter of support from the chair/head of each cross-listed unit.
</div>
<?php } ?>
</fieldset>
<?php if(in_array($this->request->getType(), array('NewCourseWithIS', 'AddISToCourse'))) { ?>
<fieldset>
<h3 class="required">IS Narrative Documentation</h3>
<table>
<?php foreach ($this->request->getFiles(Requests_RequestModel::FILE_TYPE_IS_NARRATIVE) as $key => $syllabus) { ?>
<tr>
<td>
<?php
if ($syllabus) {
if ($syllabus['file']) { ?>
<a href="<?php echo $this->baseUrl(); ?>/requests/view/get-file/fileId/<?php echo $syllabus['file']; ?>">
<?php } else { ?>
<a href="<?php echo $this->baseUrl(); ?>/requests/view/get-file/fileId/session/id/<?php echo $key; ?>">
<?php }
echo htmlspecialchars($syllabus['title']);
echo '</a>';
}
?>
</td>
<td class="hidden"> <input type="hidden" name="files[<?php echo $key ?>][type]" value="<?php echo Requests_RequestModel::FILE_TYPE_IS_NARRATIVE; ?>" /> </td>
<td>
Remove:
<input type="checkbox"
name="files[<?php echo $key; ?>][delete]"
value="yes" />
</td>
</tr>
<?php } ?>
<tr class="hidden_new_record">
<td> <input disabled="disabled" type="file" name="files[<?php echo Requests_RequestModel::FILE_TYPE_IS_NARRATIVE; ?>][__key__]" /> </td>
<td> <a href="#" class="remove_record_button">Remove</a> </td>
</tr>
<tr>
<td colspan="3">
<a href="#" class="add_record_button">Add File</a>
</td>
</tr>
</table>
</fieldset>
<?php } ?>
<fieldset>
<h3>Additional Documentation (Optional)</h3>
<table>
<?php foreach ($this->request->getFiles(Requests_RequestModel::FILE_TYPE_OTHER) as $key => $syllabus) { ?>
<tr>
<td>
<?php
if ($syllabus) {
if ($syllabus['file']) { ?>
<a href="<?php echo $this->baseUrl(); ?>/requests/view/get-file/fileId/<?php echo $syllabus['file']; ?>">
<?php } else { ?>
<a href="<?php echo $this->baseUrl(); ?>/requests/view/get-file/fileId/session/id/<?php echo $key; ?>">
<?php }
echo htmlspecialchars($syllabus['title']);
echo '</a>';
}
?>
</td>
<td class="hidden"> <input type="hidden" name="files[<?php echo $key ?>][type]" value="<?php echo Requests_RequestModel::FILE_TYPE_OTHER; ?>" /> </td>
<td>
Remove:
<input type="checkbox"
name="files[<?php echo $key; ?>][delete]"
value="yes" />
</td>
</tr>
<?php } ?>
<tr class="hidden_new_record">
<td> <input disabled="disabled" type="file" name="files[<?php echo Requests_RequestModel::FILE_TYPE_OTHER; ?>][__key__]" /> </td>
<td> <a href="#" class="remove_record_button">Remove</a> </td>
</tr>
<tr>
<td colspan="3">
<a href="#" class="add_record_button">Add File</a>
</td>
</tr>
</table>
<?php if (in_array($this->request->getType(), array('NewCourseWithACE', 'AddACEToCourse', 'AddACEAndChangeCourse'))) { ?>
<div>
If the course proposed for ACE certification is an Honors course, include
letter of support from chair/head of the department offering the Honors
course.
</div>
<?php } ?>
</fieldset>
<div id="allowedFileTypes">
Allowed file types for attachments are:
<ul>
<li><a href="http://en.wikipedia.org/wiki/Rich_text_format" target="_new">Rich Text Format (.rtf)</a></li>
<li><a href="http://en.wikipedia.org/wiki/Portable_document_format" target="_new">Portable Document Format (.pdf)</a></li>
<li><a href="http://en.wikipedia.org/wiki/Open_document_format" target="_new">OpenDocument Text (.odt)</a></li>
<li><a href="http://en.wikipedia.org/wiki/DOC_(computing)" target="_new">MS Word Documents (.doc)</a></li>
<li><a href="http://en.wikipedia.org/wiki/Office_Open_XML" target="_new">Office Open XML (.docx)</a></li>
</ul>
</div>
</div>
<?php if(in_array($this->request->getType(), array('AddACEToCourse', 'RemoveACEFromCourse', 'ChangeACE'))) { ?>
<input type="hidden" name="request[justification]" value="See ACE Certification Details" />
<?php } ?>
<input type="submit" value="Preview" />
<input id="cancel_request" type="submit" name="submitType" value="Cancel" />
</form>
</div>