From 45a459c7b70f54ed702fae67900889ea85aaeb37 Mon Sep 17 00:00:00 2001 From: Ivan Tcholakov Date: Mon, 4 Oct 2010 09:49:13 +0300 Subject: [PATCH] Feature #2099 - A new library file "course_request.lib.php" has been added. --- main/inc/lib/course_request.lib.php | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 main/inc/lib/course_request.lib.php diff --git a/main/inc/lib/course_request.lib.php b/main/inc/lib/course_request.lib.php new file mode 100644 index 0000000000..13758d9e2a --- /dev/null +++ b/main/inc/lib/course_request.lib.php @@ -0,0 +1,21 @@ +, 2010 + * @author Bruno Rubio Gayo , 2010 + * Centro de Supercomputacion de Galicia (CESGA) + * + * @author Ivan Tcholakov (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 { + +} \ No newline at end of file