Feature #2099 - A new library file "course_request.lib.php" has been added.
parent
4892af4746
commit
45a459c7b7
@ -0,0 +1,21 @@ |
||||
<?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 { |
||||
|
||||
} |
||||
Loading…
Reference in new issue