]> git.mjollnir.org Git - moodle.git/commitdiff
[multienrol]enrol/authorize: fix references to 'internal' method
authormartinlanghoff <martinlanghoff>
Thu, 9 Mar 2006 04:26:37 +0000 (04:26 +0000)
committermartinlanghoff <martinlanghoff>
Thu, 9 Mar 2006 04:26:37 +0000 (04:26 +0000)
enrol/authorize/enrol.php

index 9df0ae6f32441b26cd8a31cf5ef5362b20da3a4f..c82c8199b11e1935f37ae3cf64e9b2cc61b4a7f6 100755 (executable)
@@ -36,10 +36,10 @@ class enrolment_plugin_authorize
     {
         global $CFG, $USER, $form;
 
-        if ($this->zero_cost($course) || isguest()) {
-            $manual = enrolment_factory::factory('manual');
-            $manual->print_entry($course);
-            return; // No money for guests ;)
+        if ($this->zero_cost($course) || isguest()) { // No money for guests ;)
+            $internal = enrolment_factory::factory('internal');
+            $internal->print_entry($course);
+            return;
         }
 
         $this->prevent_double_paid($course);
@@ -64,7 +64,7 @@ class enrolment_plugin_authorize
         if ($course->password) {
             print_simple_box(get_string('choosemethod', 'enrol_authorize'), 'center');
             $password = '';
-            include $CFG->dirroot.'/enrol/manual/enrol.html';
+            include $CFG->dirroot.'/enrol/internal/enrol.html';
         }
 
         print_simple_box_start('center');
@@ -83,9 +83,9 @@ class enrolment_plugin_authorize
      * @access public
      */
     function check_entry($form, $course) {
-        if ((!empty($form->password)) || isguest() || $this->zero_cost($course)) {
-            $manual = enrolment_factory::factory('manual');
-            $manual->check_entry($form, $course);
+        if ($this->zero_cost($course) || isguest() || (!empty($form->password))) {
+            $internal = enrolment_factory::factory('internal');
+            $internal->print_entry($course);
         } elseif ((!empty($form->ccsubmit)) && $this->validate_enrol_form($form)) {
             $this->cc_submit($form, $course);
         }
@@ -373,8 +373,9 @@ class enrolment_plugin_authorize
      */
     function get_access_icons($course) {
 
-        $manual = enrolment_factory::factory('manual');
-        $str = $manual->get_access_icons($course);
+
+        $internal = enrolment_factory::factory('internal');
+        $str = $internal->get_access_icons($course);
         $curcost = $this->get_course_cost($course);
 
         if (abs($curcost['cost']) > 0.00) {
@@ -573,6 +574,8 @@ class enrolment_plugin_authorize
     function cron()
     {
         global $CFG;
+        $internal = enrolment_factory::factory('internal');
+        $internal->cron();
         require_once $CFG->dirroot.'/enrol/authorize/action.php';
 
         $oneday = 86400;