|
@@ -1,6 +1,7 @@
|
1
|
1
|
#-*- coding: utf-8 -*-
|
2
|
2
|
|
3
|
3
|
from EditorialModel.components import EmComponent, EmComponentNotExistError
|
|
4
|
+from EditorialModel.fields_types import Em_Field_Type
|
4
|
5
|
from Database import sqlutils
|
5
|
6
|
import sqlalchemy as sql
|
6
|
7
|
|
|
@@ -64,19 +65,27 @@ class EmType(EmComponent):
|
64
|
65
|
return res
|
65
|
66
|
pass
|
66
|
67
|
|
67
|
|
- ## Indicate that an optionnal field is used
|
|
68
|
+ ## Select_field (Function)
|
|
69
|
+ #
|
|
70
|
+ # Indicates that an optional field is used
|
|
71
|
+ #
|
68
|
72
|
# @param field EmField: The optional field to select
|
69
|
|
- # @throw TypeError if field is not an EmField
|
70
|
|
- # @throw ValueError if field is not an optionnal field
|
|
73
|
+ # @throw ValueError, TypeError
|
|
74
|
+ # @todo change exception type and define return value and raise condition
|
71
|
75
|
def select_field(self, field):
|
72
|
|
- pass
|
|
76
|
+ Em_Field_Type.create(self, field)
|
73
|
77
|
|
74
|
|
- ## Indicate that an optionnal field will not be used (anymore)
|
75
|
|
- # @param field EmField: The optionnal field to unselect
|
76
|
|
- # @throw TypeError if field is not an EmField
|
77
|
|
- # @throw ValueError if field is not an optionnal field
|
|
78
|
+ ## Unselect_field (Function)
|
|
79
|
+ #
|
|
80
|
+ # Indicates that an optional field will not be used
|
|
81
|
+ #
|
|
82
|
+ # @param field EmField: The optional field to unselect
|
|
83
|
+ # @throw ValueError, TypeError
|
|
84
|
+ # @todo change exception type and define return value and raise condition
|
78
|
85
|
def unselect_field(self, field):
|
79
|
|
- pass
|
|
86
|
+ emFieldType = Em_Field_Type(self.uid, field.uid)
|
|
87
|
+ emFieldType.delete()
|
|
88
|
+ del emFieldType
|
80
|
89
|
|
81
|
90
|
## Get the list of associated hooks
|
82
|
91
|
# @note Not conceptualized yet
|