芝麻web文件管理V1.00
编辑当前文件:/home2/sdektunc/public_html/cepali/admin/tool/policy/classes/policy_exporter.php
. /** * Provides the {@link tool_policy\policy_exporter} class. * * @package tool_policy * @copyright 2018 David Mudrak
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ namespace tool_policy; defined('MOODLE_INTERNAL') || die(); use core\external\exporter; use renderer_base; /** * Exporter of a policy document model. * * @copyright 2018 David Mudrak
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ class policy_exporter extends exporter { /** * Return the list of properties. * * @return array */ protected static function define_properties() { return [ 'id' => [ 'type' => PARAM_INT, ], 'sortorder' => [ 'type' => PARAM_INT, 'default' => 999, ], 'currentversionid' => [ 'type' => PARAM_INT, 'null' => NULL_ALLOWED, ], ]; } /** * Returns a list of objects that are related. * * @return array */ protected static function define_related() { return [ 'versions' => 'tool_policy\policy_version_exporter[]', ]; } /** * Return the list of additional, generated dynamically from the given properties. * * @return array */ protected static function define_other_properties() { return [ 'currentversion' => [ 'type' => policy_version_exporter::read_properties_definition(), 'null' => NULL_ALLOWED, ], 'draftversions' => [ 'type' => policy_version_exporter::read_properties_definition(), 'multiple' => true, ], 'archivedversions' => [ 'type' => policy_version_exporter::read_properties_definition(), 'multiple' => true, ], ]; } /** * Get the additional values to inject while exporting. * * @param renderer_base $output The renderer. * @return array Keys are the property names, values are their values. */ protected function get_other_values(renderer_base $output) { $othervalues = [ 'currentversion' => null, 'draftversions' => [], 'archivedversions' => [], ]; foreach ($this->related['versions'] as $exporter) { $data = $exporter->export($output); if ($data->id == $this->data->currentversionid) { $othervalues['currentversion'] = $data; } else if ($data->archived) { $othervalues['archivedversions'][] = $data; } else { $othervalues['draftversions'][] = $data; } } return $othervalues; } }