blob: 6320684dd7dfb2eb13c3afc77525e9220445e148 (
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
|
<?php
namespace eTask;
/**
* eTask conforming assignment definition.
*
* @property int id database column
* @property int test_id database column
* @property string range_type database column
* @property string range_id database column
* @property string type database column
* @property string start database column
* @property string end database column
* @property int active database column
* @property string options database column
* @property eTask\Test test belongs_to etask\Test
* @property SimpleORMapCollection attempts has_many etask\Attempt
* @property SimpleORMapCollection ranges has_many etask\AssignmentRange
* @property SimpleORMapCollection responses has_many etask\Response
* @property JSONArrayobject options serialized database column
*/
class Assignment extends \SimpleORMap
{
use ConfigureTrait;
/**
* @see SimpleORMap::configure
*/
protected static function configure($config = [])
{
$config['db_table'] = 'etask_assignments';
$config['relationTypes'] = self::configureClassNames($config);
$config['belongs_to']['test'] = [
'class_name' => $config['relationTypes']['Test'],
'foreign_key' => 'test_id'
];
$config['has_many']['attempts'] = [
'class_name' => $config['relationTypes']['Attempt'],
'assoc_foreign_key' => 'assignment_id',
'on_delete' => 'delete',
'on_store' => 'store'
];
$config['has_many']['ranges'] = [
'class_name' => $config['relationTypes']['AssignmentRange'],
'assoc_foreign_key' => 'assignment_id',
'on_delete' => 'delete',
'on_store' => 'store'
];
$config['has_many']['responses'] = [
'class_name' => $config['relationTypes']['Response'],
'assoc_foreign_key' => 'assignment_id',
'on_delete' => 'delete',
'on_store' => 'store'
];
$config['serialized_fields']['options'] = 'JSONArrayObject';
parent::configure($config);
}
}
|