Files
@ 3bdee2bad3fb
Branch filter:
Location: SlatePermutate/school.d/calvin.crawl.inc - annotation
3bdee2bad3fb
1.8 KiB
text/x-povray
Finish cleaning up some no-longer-used functions from calvin.crawl.inc unused since bbb436f2315b.
43acd1a78fa7 6cb196f112d9 6cb196f112d9 6cb196f112d9 6cb196f112d9 6cb196f112d9 6cb196f112d9 6cb196f112d9 6cb196f112d9 6cb196f112d9 6cb196f112d9 6cb196f112d9 6cb196f112d9 6cb196f112d9 6cb196f112d9 6cb196f112d9 6cb196f112d9 6cb196f112d9 6cb196f112d9 6cb196f112d9 bbb436f2315b bbb436f2315b 6cb196f112d9 6cb196f112d9 3db76bd5a41c 6cb196f112d9 3db76bd5a41c 3db76bd5a41c 3b78fdf04ce4 3db76bd5a41c b5e0a0fe027d 3db76bd5a41c 3db76bd5a41c 6cb196f112d9 3db76bd5a41c 6cb196f112d9 bbb436f2315b 3db76bd5a41c 6cb196f112d9 3db76bd5a41c 3db76bd5a41c 3db76bd5a41c 3db76bd5a41c 3db76bd5a41c 3db76bd5a41c 3db76bd5a41c 3db76bd5a41c 3db76bd5a41c 3db76bd5a41c 3db76bd5a41c 3db76bd5a41c 3db76bd5a41c bbb436f2315b 775e75832d2e | <?php /* -*- mode: php; -*- */
/*
* Copyright 2010 Nathan Phillip Brink <ohnobinki@ohnopublishing.net>
*
* This file is a part of slate_permutate.
*
* slate_permutate is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* slate_permutate is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with slate_permutate. If not, see <http://www.gnu.org/licenses/>.
*/
require_once dirname(dirname(__FILE__)) . DIRECTORY_SEPARATOR . 'inc' . DIRECTORY_SEPARATOR . 'school.crawl.webadvisor.inc';
/**
* \brief
* Retrieve a list of crawlable semesters from Calvin College.
*
* \param $school
* The calvin school handle.
* \param $semesters
* The array to populate with empty Semester objects.
* \param $school_crawl_log
* A school_crawl_log handle for informing the user/developer of
* progress.
*/
function calvin_crawl_semester_list(array $school, array &$semesters, &$school_crawl_log)
{
return school_crawl_webadvisor_semester_list($school, $semesters, $school_crawl_log);
}
/**
* \brief
* Crawl the courses for a semester from Calvin College.
*
* \param $school
* The calvin school handle.
* \param $semester
* The Semester object to populate with courses.
* \param $school_crawl_log
* The logger handle.
*/
function calvin_crawl_semester(array $school, Semester $semester, &$school_crawl_log)
{
return school_crawl_webadvisor_semester($school, $semester, $school_crawl_log);
}
|