blob: bea234df067bcea3a19e3a58a85c3e5094b348a1 (
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
|
<?php
/**
* DatafieldEntryModelI18N
* model class for table datafields_entries
*
* 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 2017 Stud.IP Core-Group
* @license http://www.gnu.org/licenses/gpl-2.0.html GPL version 2
* @category Stud.IP
* @since 4.1
*
* @property string datafield_id database column
* @property string range_id database column
* @property string content database column
* @property string mkdate database column
* @property string chdate database column
* @property string sec_range_id database column
* @property string name computed column read/write
* @property string id computed column read/write
* @property Datafield datafield belongs_to Datafield
*/
class DatafieldEntryModelI18N extends DatafieldEntryModel
{
protected static function configure($config = [])
{
$config['i18n_fields']['content'] = true;
parent::configure($config);
}
}
|