You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
522 B
21 lines
522 B
|
15 years ago
|
<?php
|
||
|
|
/* For licensing terms, see /license.txt */
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Course request manager
|
||
|
|
* @package chamilo.library
|
||
|
|
*
|
||
|
|
* @author José Manuel Abuin Mosquera <chema@cesga.es>, 2010
|
||
|
|
* @author Bruno Rubio Gayo <brubio@cesga.es>, 2010
|
||
|
|
* Centro de Supercomputacion de Galicia (CESGA)
|
||
|
|
*
|
||
|
|
* @author Ivan Tcholakov <ivantcholakov@gmail.com> (technical adaptation for Chamilo 1.8.8), 2010
|
||
|
|
*/
|
||
|
|
|
||
|
|
define(COURSE_REQUEST_PENDING, 0);
|
||
|
|
define(COURSE_REQUEST_ACCEPTED, 1);
|
||
|
|
define(COURSE_REQUEST_REJECTED, 2);
|
||
|
|
|
||
|
|
class CourseRequestManager {
|
||
|
|
|
||
|
|
}
|