aboutsummaryrefslogtreecommitdiff
path: root/lib/models/UserStudyCourse.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/UserStudyCourse.class.php
current code from svn, revision 62608
Diffstat (limited to 'lib/models/UserStudyCourse.class.php')
-rw-r--r--lib/models/UserStudyCourse.class.php91
1 files changed, 91 insertions, 0 deletions
diff --git a/lib/models/UserStudyCourse.class.php b/lib/models/UserStudyCourse.class.php
new file mode 100644
index 0000000..8fe6454
--- /dev/null
+++ b/lib/models/UserStudyCourse.class.php
@@ -0,0 +1,91 @@
+<?php
+/**
+ * UserStudyCourse.class.php
+ * model class for table user_studiengang
+ *
+ * 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 André Noack <noack@data-quest.de>
+ * @copyright 2013 Stud.IP Core-Group
+ * @license http://www.gnu.org/licenses/gpl-2.0.html GPL version 2
+ * @category Stud.IP
+ *
+ * @property string user_id database column
+ * @property string studiengang_id database column
+ * @property string semester database column
+ * @property string abschluss_id database column
+ * @property string degree_name computed column read/write
+ * @property string studycourse_name computed column read/write
+ * @property string id computed column read/write
+ * @property User user belongs_to User
+ * @property Degree degree belongs_to Degree
+ * @property StudyCourse studycourse belongs_to StudyCourse
+ */
+class UserStudyCourse extends SimpleORMap implements PrivacyObject
+{
+
+ public static function findByUser($user_id)
+ {
+ $db = DbManager::get();
+ $st = $db->prepare("SELECT user_studiengang.*, abschluss.name as degree_name,
+ fach.name as studycourse_name
+ FROM user_studiengang
+ LEFT JOIN abschluss USING (abschluss_id)
+ LEFT JOIN fach USING (fach_id)
+ WHERE user_id = ? ORDER BY studycourse_name,degree_name");
+ $st->execute([$user_id]);
+ $ret = [];
+ while ($row = $st->fetch(PDO::FETCH_ASSOC)) {
+ $ret[] = self::buildExisting($row);
+ }
+ return $ret;
+ }
+
+ public static function findByStudyCourseAndDegree($study_course_id, $degree_id)
+ {
+ return self::findBySql("fach_id = ? AND abschluss_id = ?", [$study_course_id, $degree_id]);
+ }
+
+ protected static function configure($config = [])
+ {
+ $config['db_table'] = 'user_studiengang';
+ $config['belongs_to']['user'] = [
+ 'class_name' => 'User',
+ 'foreign_key' => 'user_id',
+ ];
+ $config['belongs_to']['degree'] = [
+ 'class_name' => 'Abschluss',
+ 'foreign_key' => 'abschluss_id',
+ ];
+ $config['belongs_to']['studycourse'] = [
+ 'class_name' => 'Fach',
+ 'foreign_key' => 'fach_id',
+ ];
+ $config['additional_fields']['degree_name'] = [];
+ $config['additional_fields']['studycourse_name'] = [];
+ parent::configure($config);
+ }
+
+ /**
+ * Export available data of a given user into a storage object
+ * (an instance of the StoredUserData class) for that user.
+ *
+ * @param StoredUserData $storage object to store data into
+ */
+ public static function exportUserData(StoredUserData $storage)
+ {
+ $sorm = self::findBySQL("user_id = ?", [$storage->user_id]);
+ if ($sorm) {
+ $field_data = [];
+ foreach ($sorm as $row) {
+ $field_data[] = $row->toRawArray();
+ }
+ if ($field_data) {
+ $storage->addTabularData(_('UserStudiengang'), 'user_studiengang', $field_data);
+ }
+ }
+ }
+}