diff options
| author | Philipp Schüttlöffel <schuettloeffel@zqs.uni-hannover.de> | 2024-09-24 10:53:31 +0200 |
|---|---|---|
| committer | Philipp Schüttlöffel <schuettloeffel@zqs.uni-hannover.de> | 2024-09-24 10:53:31 +0200 |
| commit | 4459dd7917f4d1c34f40bb68f0e991e9c3d53e4c (patch) | |
| tree | 5c07151ae61276d334e88f6309c30d439a85c12e /lib/models/StudipScmEntry.class.php | |
| parent | da0022e5c1abbf9825ae76debaabdff7e8623bb4 (diff) | |
| parent | 97a188592c679890a25c37ab78463add76a52ff7 (diff) | |
Merge branch 'main' into issue-3911issue-3911
Diffstat (limited to 'lib/models/StudipScmEntry.class.php')
| -rw-r--r-- | lib/models/StudipScmEntry.class.php | 55 |
1 files changed, 0 insertions, 55 deletions
diff --git a/lib/models/StudipScmEntry.class.php b/lib/models/StudipScmEntry.class.php deleted file mode 100644 index 7001a4a..0000000 --- a/lib/models/StudipScmEntry.class.php +++ /dev/null @@ -1,55 +0,0 @@ -<?php -/** - * StudipScmEntry.class.php - * - * 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>, Suchi & Berg GmbH <info@data-quest.de> - * @author Jan-Hendrik Willms <tleilax+studip@gmail.com> - * - * @property string $id alias column for scm_id - * @property string $scm_id database column - * @property string $range_id database column - * @property string $user_id database column - * @property I18NString $tab_name database column - * @property I18NString $content database column - * @property int $mkdate database column - * @property int $chdate database column - * @property int $position database column - * @property User $user belongs_to User - * @property Course $course belongs_to Course - */ - -class StudipScmEntry extends SimpleORMap -{ - protected static function configure($config = []) - { - $config['db_table'] = 'scm'; - - $config['belongs_to']['user'] = [ - 'class_name' => User::class, - 'foreign_key' => 'user_id', - ]; - $config['belongs_to']['course'] = [ - 'class_name' => Course::class, - 'foreign_key' => 'range_id', - ]; - - $config['i18n_fields']['tab_name'] = true; - $config['i18n_fields']['content'] = true; - - $config['registered_callbacks']['before_create'][] = function ($scm) { - $query = "SELECT MAX(`position`) - FROM `scm` - WHERE `range_id` = ?"; - $max_pos = DBManager::get()->fetchColumn($query, [$scm->range_id]); - - $scm->position = $max_pos + 1; - }; - - parent::configure($config); - } -} |
