. */ function cedarville_info() { return array('name' => 'Cedarville University', 'url' => 'http://cedarville.edu/', 'domains' => array( 'cedarville.edu', ), 'student_address' => 'Cedarville Student', ); } function cedarville_instructions_html() { return <<Instructions

SlatePermutate can be a useful tool for scheduling your next semester at Cedarville University.

  1. Enter the course ID, such as PHYS-1020, in the Class ID blank. You will see a list of auto-suggestions.
  2. You must click on the auto-suggested item to automatically add all sections of the class.
  3. Submit your schedule and view all of the different permutations of your schedule.
  4. Schedule a meeting with your advisor to review your schedule.
  5. When it's time to register, check the "Show Synonyms" box on your schedule and enter your course synonyms into the registration interface.
EOF; } /** * \brief * Get a list of default classes (with sections (with meeting * times)) for Cedarville students. * * \return * An array of Course objects. */ function cedarville_default_classes() { $chapel = new Course('Chapel'); $chapel->section_add(new Section('_', array(new SectionMeeting('mtwhf', '1000', '1045', '', 'chapel')), '', '_')); return array($chapel); }