1 | <?php |
||
29 | abstract class BaseUserRelationGroupModel extends BaseBlameableModel |
||
30 | { |
||
31 | use UserRelationGroupTrait; |
||
32 | |||
33 | public $confirmationAttribute = false; |
||
34 | public $descriptionAttribute = 'description'; |
||
35 | |||
36 | /** |
||
37 | * @var false This feature does not need to record IP address. |
||
38 | */ |
||
39 | public $enableIP = false; |
||
40 | public $idAttribute = false; |
||
41 | |||
42 | /** |
||
43 | * @var false This feature does not need to record last update time. |
||
44 | */ |
||
45 | public $updatedAtAttribute = false; |
||
46 | |||
47 | /** |
||
48 | * @var false This feature does not need to record the user who update this group. |
||
49 | */ |
||
50 | public $updatedByAttribute = false; |
||
51 | |||
52 | /** |
||
53 | * @inheritdoc |
||
54 | */ |
||
55 | 16 | public function init() |
|
66 | } |
||
67 |