forked from isuru89/moodle-local_reminders
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlib.php
597 lines (498 loc) · 25.4 KB
/
lib.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
<?php
// This file is part of Moodle - http://moodle.org/
//
// Moodle is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// Moodle is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
/**
* Library function for reminders cron function.
*
* @package local
* @subpackage reminders
* @copyright 2012 Isuru Madushanka Weerarathna
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
require_once($CFG->dirroot . '/local/reminders/reminder.class.php');
require_once($CFG->dirroot . '/local/reminders/contents/site_reminder.class.php');
require_once($CFG->dirroot . '/local/reminders/contents/user_reminder.class.php');
require_once($CFG->dirroot . '/local/reminders/contents/course_reminder.class.php');
require_once($CFG->dirroot . '/local/reminders/contents/group_reminder.class.php');
require_once($CFG->dirroot . '/local/reminders/contents/due_reminder.class.php');
require_once($CFG->dirroot . '/calendar/lib.php');
require_once($CFG->dirroot . '/group/lib.php');
require_once($CFG->libdir . '/accesslib.php');
require_once($CFG->dirroot . '/availability/classes/info_module.php');
require_once($CFG->libdir . '/modinfolib.php');
/// CONSTANTS ///////////////////////////////////////////////////////////
DEFINE('REMINDERS_DAYIN_SECONDS', 24 * 3600);
DEFINE('REMINDERS_FIRST_CRON_CYCLE_CUTOFF_DAYS', 5);
DEFINE('REMINDERS_7DAYSBEFORE_INSECONDS', 7*24*3600);
DEFINE('REMINDERS_3DAYSBEFORE_INSECONDS', 3*24*3600);
DEFINE('REMINDERS_1DAYBEFORE_INSECONDS', 24*3600);
DEFINE('REMINDERS_SEND_ALL_EVENTS', 50);
DEFINE('REMINDERS_SEND_ONLY_VISIBLE', 51);
DEFINE('REMINDERS_ACTIVITY_BOTH', 60);
DEFINE('REMINDERS_ACTIVITY_ONLY_OPENINGS', 61);
DEFINE('REMINDERS_ACTIVITY_ONLY_CLOSINGS', 62);
DEFINE('REMINDERS_SEND_AS_NO_REPLY', 70);
DEFINE('REMINDERS_SEND_AS_ADMIN', 71);
/// FUNCTIONS ///////////////////////////////////////////////////////////
/**
* Function to be run periodically according to the moodle cron
* Finds all events due for a reminder and send them out to the users.
*
*/
function local_reminders_cron() {
global $CFG, $DB;
if (!isset($CFG->local_reminders_enable) || !$CFG->local_reminders_enable) {
mtrace(" [Local Reminder] This cron cycle will be skipped, because plugin is not enabled!");
return;
}
$aheaddaysindex = array(7 => 0, 3 => 1, 1 => 2);
$eventtypearray = array('site', 'user', 'course', 'due', 'group');
// loading roles allowed to receive reminder messages from configuration
//
$allroles = get_all_roles();
$courseroleids = array();
$activityroleids = array();
if (!empty($allroles)) {
$flag = 0;
foreach ($allroles as $arole) {
$roleoptionactivity = $CFG->local_reminders_activityroles;
if (isset($roleoptionactivity[$flag]) && $roleoptionactivity[$flag] == '1') {
$activityroleids[] = $arole->id;
}
$roleoption = $CFG->local_reminders_courseroles;
if (isset($roleoption[$flag]) && $roleoption[$flag] == '1') {
$courseroleids[] = $arole->id;
}
$flag++;
}
}
// older implementation to retrieve most recent execution about reminders cron
// cycle
//
//$params = array();
//$selector = "l.course = 0 AND l.module = 'local_reminders' AND l.action = 'cron'";
//$totalcount = 0;
//$logrows = get_logs($selector, $params, 'l.time DESC', '', 1, $totalcount);
// we need only last record only, so we limit the returning number of rows at most by one.
//
$logrows = $DB->get_records("local_reminders", array(), 'time DESC', '*', 0, 1);
$timewindowstart = time();
if (!$logrows) { // this is the first cron cycle, after plugin is just installed
mtrace(" [Local Reminder] This is the first cron cycle");
$timewindowstart = $timewindowstart - REMINDERS_FIRST_CRON_CYCLE_CUTOFF_DAYS * 24 * 3600;
} else {
// info field includes that starting time of last cron cycle.
$firstrecord = current($logrows);
$timewindowstart = $firstrecord->time + 1;
}
// end of the time window will be set as current
$timewindowend = time();
// now lets filter appropiate events to send reminders
//
$secondsaheads = array(REMINDERS_7DAYSBEFORE_INSECONDS, REMINDERS_3DAYSBEFORE_INSECONDS,
REMINDERS_1DAYBEFORE_INSECONDS);
// append custom schedule if any of event categories has defined it.
foreach ($eventtypearray as $etype) {
$tempconfigstr = 'local_reminders_'.$etype.'custom';
if (isset($CFG->$tempconfigstr) && !empty($CFG->$tempconfigstr)
&& $CFG->$tempconfigstr > 0 && !in_array($CFG->$tempconfigstr, $secondsaheads)) {
array_push($secondsaheads, $CFG->$tempconfigstr);
}
}
$whereclause = '(timestart > '.$timewindowend.') AND (';
$flagor = false;
foreach ($secondsaheads as $sahead) {
if($flagor) {
$whereclause .= ' OR ';
}
$whereclause .= '(timestart - '.$sahead.' >= '.$timewindowstart.' AND '.
'timestart - '.$sahead.' <= '.$timewindowend.')';
$flagor = true;
}
$whereclause .= ')';
// Reminders per course?
if ($CFG->local_reminders_percourse) {
$enabledcourseids = $DB->get_fieldset_select('local_reminders_course', 'courseid', 'enabled = 1');
if (!$enabledcourseids) {
// No use continuing because there are no courses with reminders enabled.
mtrace(" [Local Reminder] Not enabled for any course. Aborting...");
add_flag_record_db($timewindowend, 'no_events');
return;
}
$whereclause .= sprintf(' AND courseid in (%s)', implode(',', $enabledcourseids));
}
if (isset($CFG->local_reminders_filterevents)) {
if ($CFG->local_reminders_filterevents == REMINDERS_SEND_ONLY_VISIBLE) {
$whereclause .= 'AND visible = 1';
}
}
mtrace(" [Local Reminder] Time window: ".userdate($timewindowstart)." to ".userdate($timewindowend));
//mtrace(" [Local Reminder] Time window: ".$timewindowstart." to ".$timewindowend);
//mtrace(" [Local Reminder] Where clause: ".$whereclause);
$upcomingevents = $DB->get_records_select('event', $whereclause);
if ($upcomingevents == false) { // no upcoming events, so let's stop.
mtrace(" [Local Reminder] No upcoming events. Aborting...");
add_flag_record_db($timewindowend, 'no_events');
return;
}
mtrace(" [Local Reminder] Found ".count($upcomingevents)." upcoming events. Continuing...");
$fromuser = core_user::get_noreply_user();
if (isset($CFG->local_reminders_sendasname) && !empty($CFG->local_reminders_sendasname)) {
$fromuser->firstname = $CFG->local_reminders_sendasname;
}
if (isset($CFG->local_reminders_sendas) && $CFG->local_reminders_sendas == REMINDERS_SEND_AS_ADMIN) {
mtrace(" [Local Reminder] Sending all reminders as Admin User...");
$fromuser = get_admin();
}
// iterating through each event...
foreach ($upcomingevents as $event) {
$event = new calendar_event($event);
$aheadday = 0;
$fromcustom = false;
if ($event->timestart - REMINDERS_1DAYBEFORE_INSECONDS >= $timewindowstart &&
$event->timestart - REMINDERS_1DAYBEFORE_INSECONDS <= $timewindowend) {
$aheadday = 1;
} else if ($event->timestart - REMINDERS_3DAYSBEFORE_INSECONDS >= $timewindowstart &&
$event->timestart - REMINDERS_3DAYSBEFORE_INSECONDS <= $timewindowend) {
$aheadday = 3;
} else if ($event->timestart - REMINDERS_7DAYSBEFORE_INSECONDS >= $timewindowstart &&
$event->timestart - REMINDERS_7DAYSBEFORE_INSECONDS <= $timewindowend) {
$aheadday = 7;
} else {
// find if custom schedule has been defined by user...
$tempconfigstr = 'local_reminders_'.$event->eventtype.'custom';
if (isset($CFG->$tempconfigstr) && !empty($CFG->$tempconfigstr) && $CFG->$tempconfigstr > 0) {
$customsecs = $CFG->$tempconfigstr;
if ($event->timestart - $customsecs >= $timewindowstart &&
$event->timestart - $customsecs <= $timewindowend) {
$aheadday = $customsecs / (REMINDERS_DAYIN_SECONDS * 1.0);
mtrace($aheadday);
$fromcustom = true;
}
}
}
if ($aheadday == 0) continue;
mtrace(" [Local Reminder] Processing event#$event->id [Type: $event->eventtype, inaheadof=$aheadday days]...");
if (!$fromcustom) {
$optionstr = 'local_reminders_' . $event->eventtype . 'rdays';
if (!isset($CFG->$optionstr)) {
if ($event->modulename) {
$optionstr = 'local_reminders_duerdays';
} else {
mtrace(" [Local Reminder] Couldn't find option for event $event->id [type: $event->eventtype]");
continue;
}
}
$options = $CFG->$optionstr;
if (empty($options) || $options == null) {
mtrace(" [Local Reminder] No configuration for eventtype $event->eventtype " .
"[event#$event->id is ignored!]...");
continue;
}
// this reminder will not be set up to send by configurations
if ($options[$aheaddaysindex[$aheadday]] == '0') {
mtrace(" [Local Reminder] No reminder is due in ahead of $aheadday for eventtype $event->eventtype " .
"[event#$event->id is ignored!]...");
continue;
}
} else {
mtrace(" [Local Reminder] A reminder can be sent for event#$event->id ".
", detected through custom schedule.");
}
$reminder = null;
$eventdata = null;
$sendusers = array();
mtrace(" [Local Reminder] Finding out users for event#".$event->id."...");
try {
switch ($event->eventtype) {
case 'site':
$reminder = new site_reminder($event, $aheadday);
$sendusers = $DB->get_records_sql("SELECT *
FROM {user}
WHERE id > 1 AND deleted=0 AND suspended=0 AND confirmed=1;");
$eventdata = $reminder->create_reminder_message_object($fromuser);
break;
case 'user':
$user = $DB->get_record('user', array('id' => $event->userid));
if (!empty($user)) {
$reminder = new user_reminder($event, $user, $aheadday);
$eventdata = $reminder->create_reminder_message_object($fromuser);
$sendusers[] = $user;
}
break;
case 'course':
$course = $DB->get_record('course', array('id' => $event->courseid));
$coursesettings = $DB->get_record('local_reminders_course', array('courseid'=>$event->courseid));
if (isset($coursesettings->status_course) && $coursesettings->status_course == 0) {
mtrace(" [Local Reminder] Reminder sending for course events has been restricted in the course specific configurations.");
break;
}
if (!empty($course)) {
$context = context_course::instance($course->id); //get_context_instance(CONTEXT_COURSE, $course->id);
$roleusers = get_role_users($courseroleids, $context, true, 'ra.id as ra_id, u.*');
$senduserids = array_map(function($u) { return $u->id; }, $roleusers);
$sendusers = array_combine($senduserids, $roleusers);
// create reminder object...
//
$reminder = new course_reminder($event, $course, $aheadday);
$eventdata = $reminder->create_reminder_message_object($fromuser);
}
break;
case 'open':
// if we dont want to send reminders for activity openings...
//
if (isset($CFG->local_reminders_duesend) && $CFG->local_reminders_duesend == REMINDERS_ACTIVITY_ONLY_CLOSINGS) {
mtrace(" [Local Reminder] Reminder sending for activity openings has been restricted in the configurations.");
break;
}
case 'close':
// if we dont want to send reminders for activity closings...
//
if (isset($CFG->local_reminders_duesend) && $CFG->local_reminders_duesend == REMINDERS_ACTIVITY_ONLY_OPENINGS) {
mtrace(" [Local Reminder] Reminder sending for activity closings has been restricted in the configurations.");
break;
}
case 'due':
if (!isemptyString($event->modulename)) {
$courseandcm = get_course_and_cm_from_instance($event->instance, $event->modulename, $event->courseid);
$course = $courseandcm[0];
$cm = $courseandcm[1];
$coursesettings = $DB->get_record('local_reminders_course', array('courseid'=>$event->courseid));
if (isset($coursesettings->status_activities) && $coursesettings->status_activities == 0) {
mtrace(" [Local Reminder] Reminder sending for activities has been restricted in the course specific configurations.");
break;
}
if (!empty($course) && !empty($cm)) {
$activityobj = fetch_module_instance($event->modulename, $event->instance, $event->courseid);
$context = context_module::instance($cm->id); //get_context_instance(CONTEXT_MODULE, $cm->id);
if ($event->courseid <= 0 && $event->userid > 0) {
// a user overridden activity...
mtrace(" [Local Reminder] Event #".$event->id." is a user overridden ".$event->modulename." event.");
$user = $DB->get_record('user', array('id' => $event->userid));
$sendusers[] = $user;
} else if ($event->courseid <= 0 && $event->groupid > 0) {
// a group overridden activity...
mtrace(" [Local Reminder] Event #".$event->id." is a group overridden ".$event->modulename." event.");
$group = $DB->get_record('groups', array('id' => $event->groupid));
$sendusers = get_users_in_group($group);
} else {
// 'ra.id field added to avoid printing debug message from get_role_users (has odd behaivior when called with an array for $roleid param'
$sendusers = get_role_users($activityroleids, $context, true, 'ra.id, u.*');
// filter user list, replacement for deprecated/removed $cm->groupmembersonly & groups_get_grouping_members($cm->groupingid);
// see: https://docs.moodle.org/dev/Availability_API#Display_a_list_of_users_who_may_be_able_to_access_the_current_activity
$info = new \core_availability\info_module($cm);
$sendusers = $info->filter_user_list($sendusers);
}
$reminder = new due_reminder($event, $course, $context, $aheadday);
$reminder->set_activity($event->modulename, $activityobj);
$eventdata = $reminder->create_reminder_message_object($fromuser);
}
}
break;
case 'group':
$group = $DB->get_record('groups', array('id' => $event->groupid));
if (!empty($group)) {
$coursesettings = $DB->get_record('local_reminders_course', array('courseid'=>$group->courseid));
if (isset($coursesettings->status_group) && $coursesettings->status_group == 0) {
mtrace(" [Local Reminder] Reminder sending for group events has been restricted in the course specific configurations.");
break;
}
$reminder = new group_reminder($event, $group, $aheadday);
// add module details, if this event is a mod type event
//
if (!isemptyString($event->modulename) && $event->courseid > 0) {
$activityobj = fetch_module_instance($event->modulename, $event->instance, $event->courseid);
$reminder->set_activity($event->modulename, $activityobj);
}
$eventdata = $reminder->create_reminder_message_object($fromuser);
$sendusers = get_users_in_group($group);
}
break;
default:
if (!isemptyString($event->modulename)) {
$course = $DB->get_record('course', array('id' => $event->courseid));
$cm = get_coursemodule_from_instance($event->modulename, $event->instance, $event->courseid);
if (!empty($course) && !empty($cm)) {
$activityobj = fetch_module_instance($event->modulename, $event->instance, $event->courseid);
$context = context_module::instance($cm->id); // get_context_instance(CONTEXT_MODULE, $cm->id);
$sendusers = get_role_users($activityroleids, $context, true, 'u.*');
//$sendusers = get_enrolled_users($context, '', $event->groupid, 'u.*');
$reminder = new due_reminder($event, $course, $context, $aheadday);
$reminder->set_activity($event->modulename, $activityobj);
$eventdata = $reminder->create_reminder_message_object($fromuser);
}
} else {
mtrace(" [Local Reminder] Unknown event type [$event->eventtype]");
}
}
} catch (Exception $ex) {
mtrace(" [Local Reminder - ERROR] Error occured when initializing ".
"for event#[$event->id] (type: $event->eventtype) ".$ex->getMessage());
mtrace(" [Local Reminder - ERROR] ".$ex->getTraceAsString());
continue;
}
if ($eventdata == null) {
mtrace(" [Local Reminder] Event object is not set for the event $event->id [type: $event->eventtype]");
continue;
}
$usize = count($sendusers);
if ($usize == 0) {
mtrace(" [Local Reminder] No users found to send reminder for the event#$event->id");
continue;
}
mtrace(" [Local Reminder] Starting sending reminders for $event->id [type: $event->eventtype]");
$failedcount = 0;
foreach ($sendusers as $touser) {
$eventdata = $reminder->set_sendto_user($touser);
//$eventdata->userto = $touser;
//foreach ($touser as $key => $value) {
// mtrace(" User: $key : $value");
//}
//$mailresult = 1; //message_send($eventdata);
//mtrace("-----------------------------------");
//mtrace($eventdata->fullmessagehtml);
//mtrace("-----------------------------------");
try {
$mailresult = message_send($eventdata);
mtrace('[LOCAL_REMINDERS] Mail Result: '.$mailresult);
if (!$mailresult) {
throw new coding_exception("Could not send out message for event#$event->id to user $eventdata->userto");
}
} catch (moodle_exception $mex) {
$failedcount++;
mtrace('Error: local/reminders/lib.php local_reminders_cron(): '.$mex->getMessage());
}
}
if ($failedcount > 0) {
mtrace(" [Local Reminder] Failed to send $failedcount reminders to users for event#$event->id");
} else {
mtrace(" [Local Reminder] All reminders was sent successfully for event#$event->id !");
}
unset($sendusers);
}
//add_to_log(0, 'local_reminders', 'cron', '', $timewindowend, 0, 0);
add_flag_record_db($timewindowend, 'sent');
}
/**
* Returns all users belong to the given group.
*
* @param $group group object as received from db.
* @return array users in an array
*/
function get_users_in_group($group) {
global $DB;
$sendusers = array();
$groupmemberroles = groups_get_members_by_role($group->id, $group->courseid, 'u.id');
if ($groupmemberroles) {
foreach($groupmemberroles as $roleid => $roledata) {
foreach($roledata->users as $member) {
$sendusers[] = $DB->get_record('user', array('id' => $member->id));
}
}
}
return $sendusers;
}
/**
* Adds a database record to local_reminders table, to mark
* that the current cron cycle is over. Then we flag the time
* of end of the cron time window, so that no reminders sent
* twice.
*
* @param $timewindowend string cron window time end.
* @param string $crontype type of reminders cron.
*/
function add_flag_record_db($timewindowend, $crontype = '') {
global $DB;
$newRecord = new stdClass();
$newRecord->time = $timewindowend;
$newRecord->type = $crontype;
$DB->insert_record("local_reminders", $newRecord);
}
/**
* Function to retrive module instace from corresponding module
* table. This function is written because when sending reminders
* it can restrict showing some fields in the message which are sensitive
* to user. (Such as some descriptions are hidden until defined date)
* Function is very similar to the function in datalib.php/get_coursemodule_from_instance,
* but by below it returns all fields of the module.
*
* Eg: can get the quiz instace from quiz table, can get the new assignment
* instace from assign table, etc.
*
* @param string $modulename name of module type, eg. resource, assignment,...
* @param int $instance module instance number (id in resource, assignment etc. table)
* @param int $courseid optional course id for extra validation
*
* @return individual module instance (a quiz, a assignment, etc).
* If fails returns null
*/
function fetch_module_instance($modulename, $instance, $courseid=0) {
global $DB;
$params = array('instance'=>$instance, 'modulename'=>$modulename);
$courseselect = "";
if ($courseid) {
$courseselect = "AND cm.course = :courseid";
$params['courseid'] = $courseid;
}
$sql = "SELECT m.*
FROM {course_modules} cm
JOIN {modules} md ON md.id = cm.module
JOIN {".$modulename."} m ON m.id = cm.instance
WHERE m.id = :instance AND md.name = :modulename
$courseselect";
try {
return $DB->get_record_sql($sql, $params, IGNORE_MISSING);
} catch (moodle_exception $mex) {
mtrace(' [Local Reminder - ERROR] Failed to fetch module instance! '.$mex.getMessage);
return null;
}
}
/**
* Returns true if input string is empty/whitespaces only, otherwise false.
*
* @param type $str string
*
* @return boolean true if string is empty or whitespace
*/
function isemptyString($str) {
return !isset($str) || empty($str) || trim($str) === '';
}
function local_reminders_extend_settings_navigation($settingsnav, $context) {
global $PAGE;
// Only add this settings item on non-site course pages.
if (!$PAGE->course or $PAGE->course->id == 1) {
return;
}
// Only let users with the appropriate capability see this settings item.
if (!has_capability('moodle/course:update', context_course::instance($PAGE->course->id))) {
return;
}
if ($settingnode = $settingsnav->find('courseadmin', navigation_node::TYPE_COURSE)) {
$name = get_string('admintreelabel', 'local_reminders');
$url = new moodle_url('/local/reminders/coursesettings.php', array('courseid' => $PAGE->course->id));
$navnode = navigation_node::create(
$name,
$url,
navigation_node::NODETYPE_LEAF,
'reminders',
'reminders',
new pix_icon('i/calendar', $name)
);
if ($PAGE->url->compare($url, URL_MATCH_BASE)) {
$navnode->make_active();
}
$settingnode->add_node($navnode);
}
}