-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.php
More file actions
24 lines (21 loc) · 788 Bytes
/
settings.php
File metadata and controls
24 lines (21 loc) · 788 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?php
//This file is a part of random_mail_send local plugin.
//
//Local plugin - random_mail_send is an application
//for user finding and saving for sending random mail.
//
//This application is developed as per task assigned by lingel learning.
/**
* Plugin administration pages are defined here.
*
* @package local_random_mail_send
* @category admin
* @copyright 2021 Your Name <kmp8072@gmail.com>
* @license https://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
defined('MOODLE_INTERNAL') || die();
$ADMIN->add('accounts',
new admin_externalpage('sendraandommails',
get_string('send_random_mail_bulk', 'local_random_mail_send'),
"$CFG->wwwroot/local/random_mail_send/index.php",
'local/random_mail_send:cansendrandommail'));