2018-05-23 06:35:23 +00:00
|
|
|
<?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/>.
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Defines mobile handlers.
|
|
|
|
*
|
|
|
|
* @package mod_customcert
|
|
|
|
* @copyright 2018 Mark Nelson <markn@moodle.com>
|
|
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
|
|
*/
|
|
|
|
|
|
|
|
defined('MOODLE_INTERNAL') || die();
|
|
|
|
|
2018-07-09 14:48:49 +00:00
|
|
|
$addons = [
|
2018-05-23 06:35:23 +00:00
|
|
|
'mod_customcert' => [ // Plugin identifier.
|
|
|
|
'handlers' => [ // Different places where the plugin will display content.
|
|
|
|
'issueview' => [ // Handler unique name.
|
|
|
|
'displaydata' => [
|
|
|
|
'icon' => $CFG->wwwroot . '/mod/customcert/pix/icon.png',
|
2020-10-12 11:34:04 +00:00
|
|
|
'class' => 'core-course-module-customcert-handler',
|
2018-05-23 06:35:23 +00:00
|
|
|
],
|
|
|
|
'delegate' => 'CoreCourseModuleDelegate', // Delegate (where to display the link to the plugin).
|
|
|
|
'method' => 'mobile_view_activity', // Main function in \mod_customcert\output\mobile.
|
2018-07-09 14:48:49 +00:00
|
|
|
'styles' => [
|
|
|
|
'url' => '/mod/customcert/mobile/styles.css',
|
|
|
|
'version' => 1
|
|
|
|
]
|
2018-05-23 06:35:23 +00:00
|
|
|
]
|
|
|
|
],
|
|
|
|
'lang' => [ // Language strings that are used in all the handlers.
|
|
|
|
['deleteissueconfirm', 'customcert'],
|
|
|
|
['getcustomcert', 'customcert'],
|
2018-06-19 13:33:11 +00:00
|
|
|
['listofissues', 'customcert'],
|
2018-05-23 06:35:23 +00:00
|
|
|
['nothingtodisplay', 'moodle'],
|
2018-07-10 06:23:27 +00:00
|
|
|
['notissued', 'customcert'],
|
2018-05-23 06:35:23 +00:00
|
|
|
['pluginname', 'customcert'],
|
|
|
|
['receiveddate', 'customcert'],
|
|
|
|
['requiredtimenotmet', 'customcert'],
|
2018-07-01 12:18:09 +00:00
|
|
|
['selectagroup', 'moodle']
|
2018-07-09 14:48:49 +00:00
|
|
|
]
|
2018-05-23 06:35:23 +00:00
|
|
|
]
|
2018-07-09 14:48:49 +00:00
|
|
|
];
|