]> git.mjollnir.org Git - moodle.git/commitdiff
$a->course: course information added. Merged from stable.
authorethem <ethem>
Thu, 15 Jun 2006 14:23:04 +0000 (14:23 +0000)
committerethem <ethem>
Thu, 15 Jun 2006 14:23:04 +0000 (14:23 +0000)
enrol/authorize/enrol.php

index 3d933bdb692579102dee60d32d38382a40933be1..359e623d0c134a9f24207a01b0ea1cc51d4fc69c 100755 (executable)
@@ -630,7 +630,7 @@ class enrolment_plugin_authorize
      */
     function cron()
     {
-        global $CFG;
+        global $CFG, $SITE;
         require_once($CFG->dirroot.'/enrol/authorize/authorizenetlib.php');
 
         $oneday = 86400;
@@ -658,10 +658,12 @@ class enrolment_plugin_authorize
                     $a = new stdClass;
                     $a->pending = $count;
                     $a->days = $CFG->an_emailexpired;
+                    $a->course = $SITE->shortname;
                     $subject = get_string('pendingorderssubject', 'enrol_authorize', $a);
                     $a = new stdClass;
                     $a->pending = $count;
                     $a->days = $CFG->an_emailexpired;
+                    $a->course = $SITE->fullname;
                     $a->enrolurl = "$CFG->wwwroot/$CFG->admin/users.php";
                     $a->url = $CFG->wwwroot."/enrol/authorize/index.php?status=".AN_STATUS_AUTH;
                     $message = get_string('pendingordersemail', 'enrol_authorize', $a);
@@ -669,8 +671,10 @@ class enrolment_plugin_authorize
                     email_to_user($adminuser, $adminuser, $subject, $message);
                     if (!empty($CFG->an_teachermanagepay) and !empty($CFG->an_emailexpiredteacher)) {
                         $sorttype = empty($CFG->an_sorttype) ? 'ttl' : $CFG->an_sorttype;
-                        $sql = "SELECT E.courseid, E.currency, COUNT(E.courseid) AS cnt, SUM(E.amount) as ttl " .
+                        $sql = "SELECT E.courseid, E.currency, C.fullname, C.shortname, " .
+                               "COUNT(E.courseid) AS cnt, SUM(E.amount) as ttl " .
                                "FROM {$CFG->prefix}enrol_authorize E " .
+                               "INNER JOIN {$CFG->prefix}course C ON C.id = E.courseid " .
                                "WHERE $select GROUP BY E.courseid ORDER BY $sorttype DESC";
                         $message = ''; $subject = ''; $lastcourse = 0;
                         $courseidandcounts = get_records_sql($sql);
@@ -678,10 +682,12 @@ class enrolment_plugin_authorize
                             if ($lastcourse != $courseidandcount->courseid) {
                                 $lastcourse = $courseidandcount->courseid;
                                 $a = new stdClass;
+                                $a->course = $courseidandcount->shortname;
                                 $a->pending = $courseidandcount->cnt;
                                 $a->days = $CFG->an_emailexpired;
                                 $subject = get_string('pendingorderssubject', 'enrol_authorize', $a);
                                 $a = new stdClass;
+                                $a->course = $courseidandcount->fullname;
                                 $a->pending = $courseidandcount->cnt;
                                 $a->currency = $courseidandcount->currency;
                                 $a->sumcost = $courseidandcount->ttl;