blob: 2c549ad570943170893d48588e5f75d70df5de55 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
<?php
namespace Courseware;
use User;
/**
* Courseware's task feedback.
*
* @author Ron Lucke <lucke@elan-ev.de>
* @license GPL2 or any later version
*
* @since Stud.IP 5.1
*
*
* @property int $id database column
* @property int $task_id database column
* @property string $lecturer_id database column
* @property string $content database column
* @property int $mkdate database column
* @property int $chdate database column
* @property \User $lecturer belongs_to \User
* @property Task $task belongs_to Task
*/
class TaskFeedback extends \SimpleORMap implements \PrivacyObject
{
protected static function configure($config = [])
{
$config['db_table'] = 'cw_task_feedbacks';
$config['belongs_to']['lecturer'] = [
'class_name' => User::class,
'foreign_key' => 'lecturer_id',
];
$config['belongs_to']['task'] = [
'class_name' => Task::class,
'foreign_key' => 'task_id',
];
parent::configure($config);
}
public function getStructuralElement(): ?StructuralElement
{
$sql = 'SELECT se.*
FROM cw_task_feedbacks tf
JOIN cw_tasks t ON t.id = tf.task_id
JOIN cw_structural_elements se ON se.id = t.structural_element_id
WHERE tf.id = ?';
$structuralElement = \DBManager::get()->fetchOne($sql, [$this->getId()]);
if (!count($structuralElement)) {
return null;
}
return StructuralElement::build($structuralElement, false);
}
/**
* 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)
{
$feedback = \DBManager::get()->fetchAll(
'SELECT * FROM cw_task_feedbacks WHERE lecturer_id = ?',
[$storage->user_id]
);
if ($feedback) {
$storage->addTabularData(_('Courseware Aufgaben Feedback'), 'cw_task_feedbacks', $feedback);
}
}
}
|