From 79a29f2faf8a769000f62d89ed47aa460255510e Mon Sep 17 00:00:00 2001 From: Tobias Baden <tobias.baden@stud.hs-hannover.de> Date: Tue, 5 Feb 2019 17:46:57 +0100 Subject: [PATCH] Added licence information --- amd/src/collapse.js | 25 +++++++++++++++++++++++++ lib.php | 24 ++++++++++++++++++++++++ locallib.php | 24 ++++++++++++++++++++++++ settings.php | 24 ++++++++++++++++++++++++ version.php | 3 ++- 5 files changed, 99 insertions(+), 1 deletion(-) diff --git a/amd/src/collapse.js b/amd/src/collapse.js index a4042f2..4229f54 100644 --- a/amd/src/collapse.js +++ b/amd/src/collapse.js @@ -1,6 +1,31 @@ /* eslint-disable linebreak-style */ // JavaScript Code genommen und angepasst von local/boostnavigation/amd/src // User-Preferences erstmal entfernt + +// 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/>. + +/** + * Local plugin "Hsh modified Boost course overview on campus" + * Original: local_boostnavigation + * + * @package local_boostnavigation + * @copyright 2017 Kathrin Osswald, Ulm University <kathrin.osswald@uni-ulm.de>, Edited by Tobias Baden, Hochschule Hannover + * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later + */ + define(['jquery'], function($) { "use strict"; var nodesArray = []; diff --git a/lib.php b/lib.php index 64a68f1..48bc319 100644 --- a/lib.php +++ b/lib.php @@ -1,4 +1,28 @@ <?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/>. + +/** + * Local plugin "Hsh modified Boost course overview on campus" + * Original: local_boostnavigation + * + * @package local_hsh_boostnavigation + * @copyright 2017 Alexander Bias, Ulm University <alexander.bias@uni-ulm.de>, Edited by Tobias Baden, Hochschule Hannover + * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later + */ + include_once($CFG->dirroot . '/course/semester_date.php'); include_once($CFG->dirroot . '/local/hsh_boostnavigation/locallib.php'); function local_hsh_boostnavigation_extend_navigation(global_navigation $navigation) { diff --git a/locallib.php b/locallib.php index 954fecb..da0cd4c 100644 --- a/locallib.php +++ b/locallib.php @@ -1,4 +1,28 @@ <?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/>. + +/** + * Local plugin "Hsh modified Boost course overview on campus" + * Original: local_boostnavigation + * + * @package local_hsh_boostnavigation + * @copyright 2017 Alexander Bias, Ulm University <alexander.bias@uni-ulm.de>, Edited by Tobias Baden, Hochschule Hannover + * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later + */ + // Code genommen - semester_date.php // Überarbeitet und angepasst - Tobias Baden HsH diff --git a/settings.php b/settings.php index 2a710a0..8c3bb7d 100644 --- a/settings.php +++ b/settings.php @@ -1,4 +1,28 @@ <?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/>. + +/** + * Local plugin "Hsh modified Boost course overview on campus" - Settings + * Original: local_boostnavigation + * + * @package local_hsh_boostnavigation + * @copyright 2017 Alexander Bias, Ulm University <alexander.bias@uni-ulm.de>, Edited by Tobias Baden, Hochschule Hannover + * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later + */ + defined('MOODLE_INTERNAL') || die(); require_once(__DIR__ . '/lib.php'); diff --git a/version.php b/version.php index d07d7ce..5f9f7d0 100644 --- a/version.php +++ b/version.php @@ -16,9 +16,10 @@ /** * Local plugin "Hsh modified Boost course overview on campus" - Version file + * Original: local_boostnavigation * * @package local_hsh_boostnavigation - * @copyright 2017 Tobias Baden, Hochschule Hannover + * @copyright 2017 Alexander Bias, Ulm University <alexander.bias@uni-ulm.de>, Edited by Tobias Baden, Hochschule Hannover * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ -- GitLab