aboutsummaryrefslogtreecommitdiff
path: root/lib/models/MvvOverlappingConflict.class.php
diff options
context:
space:
mode:
authorJan-Hendrik Willms <tleilax+github@gmail.com>2021-07-22 16:07:19 +0200
committerJan-Hendrik Willms <tleilax+github@gmail.com>2021-07-22 16:19:12 +0200
commita3da1483a9e689846179159355badfec8073dbec (patch)
tree770dcca6bdf5f6f2a11b0e7fcbbeda6919a3fc52 /lib/models/MvvOverlappingConflict.class.php
current code from svn, revision 62608
Diffstat (limited to 'lib/models/MvvOverlappingConflict.class.php')
-rw-r--r--lib/models/MvvOverlappingConflict.class.php93
1 files changed, 93 insertions, 0 deletions
diff --git a/lib/models/MvvOverlappingConflict.class.php b/lib/models/MvvOverlappingConflict.class.php
new file mode 100644
index 0000000..26388c7
--- /dev/null
+++ b/lib/models/MvvOverlappingConflict.class.php
@@ -0,0 +1,93 @@
+<?php
+/**
+ * MvvOverlappingConflict.class.php - model class for table mvv_ovl_conflicts
+ *
+ * This program 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 2 of
+ * the License, or (at your option) any later version.
+ *
+ * @author Peter Thienel <thienel@data-quest.de>
+ * @copyright 2018 Stud.IP Core-Group
+ * @license http://www.gnu.org/licenses/gpl-2.0.html GPL version 2
+ * @category Stud.IP
+ * @since 4.4
+ */
+
+class MvvOverlappingConflict extends SimpleORMap
+{
+
+ /**
+ * Configures the model.
+ *
+ * @param array $config Configuration
+ */
+ protected static function configure($config = array()) {
+
+ $config['db_table'] = 'mvv_ovl_conflicts';
+ $config['belongs_to']['selection'] = [
+ 'class_name' => 'MvvOverlappingSelection',
+ 'foreign_key' => 'selection_id',
+ 'assoc_foreign_key' => 'id'
+ ];
+ $config['belongs_to']['base_abschnitt'] = [
+ 'class_name' => 'StgteilAbschnitt',
+ 'foreign_key' => 'base_abschnitt_id'
+ ];
+ $config['belongs_to']['base_modulteil'] = [
+ 'class_name' => 'Modulteil',
+ 'foreign_key' => 'base_modulteil_id'
+ ];
+ $config['belongs_to']['base_cycle'] = [
+ 'class_name' => 'SeminarCycleDate',
+ 'foreign_key' => 'base_metadate_id'
+ ];
+ $config['belongs_to']['base_course'] = [
+ 'class_name' => 'Course',
+ 'foreign_key' => 'base_course_id'
+ ];
+ $config['belongs_to']['comp_abschnitt'] = [
+ 'class_name' => 'StgteilAbschnitt',
+ 'foreign_key' => 'comp_abschnitt_id'
+ ];
+ $config['belongs_to']['comp_modulteil'] = [
+ 'class_name' => 'Modulteil',
+ 'foreign_key' => 'comp_modulteil_id'
+ ];
+ $config['belongs_to']['comp_cycle'] = [
+ 'class_name' => 'SeminarCycleDate',
+ 'foreign_key' => 'comp_metadate_id'
+ ];
+ $config['belongs_to']['comp_course'] = [
+ 'class_name' => 'Course',
+ 'foreign_key' => 'comp_course_id'
+ ];
+
+ parent::configure($config);
+ }
+
+ /**
+ * Returns true if this conflict belongs to a excluded (hidden) course.
+ *
+ * @return boolean True if this conflict is excluded.
+ */
+ public function isExcluded()
+ {
+ return MvvOverlappingExclude::find([$this->selection->selection_id,
+ $this->comp_course_id]) ? true : false;
+ }
+
+ /**
+ * Deletes all conflicts by given selection id.
+ *
+ * @param string $selection_id
+ * @return number
+ */
+ public static function deleteBySelection($selection_id)
+ {
+ return self::deleteBySQL('INNER JOIN `mvv_ovl_selections`
+ ON `mvv_ovl_selections`.`id` = `mvv_ovl_conflicts`.`selection_id`
+ WHERE `mvv_ovl_selections`.`selection_id` = ?',
+ [$selection_id]);
+ }
+}