Select Git revision
messenger.php
Forked from
Stud.IP / Stud.IP
Source project has a limited visibility.
-
Closes #3939 Merge request studip/studip!2798
Closes #3939 Merge request studip/studip!2798
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
DatafieldEntryModelI18N.class.php 1.17 KiB
<?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);
}
}