Browse Source

EmType.fields() implementation

Changed comments about EmFieldGroup.fields()
Yann Weber 9 years ago
parent
commit
5dbe064b95
2 changed files with 7 additions and 3 deletions
  1. 1
    1
      EditorialModel/fieldgroups.py
  2. 6
    2
      EditorialModel/types.py

+ 1
- 1
EditorialModel/fieldgroups.py View File

@@ -59,7 +59,7 @@ class EmFieldGroup(EmComponent):
59 59
         return exists
60 60
 
61 61
     ## Get the list of associated fields
62
-    # @return A list of EditorialModel::fields::EmField
62
+    # @return A list of EmField uid
63 63
     # @todo Implement this method
64 64
     def fields(self):
65 65
         pass

+ 6
- 2
EditorialModel/types.py View File

@@ -44,7 +44,7 @@ class EmType(EmComponent):
44 44
         return exists
45 45
     
46 46
     ## Get the list of associated fieldgroups
47
-    # @return A list of uid
47
+    # @return A list of EmFieldGroup uid
48 48
     def field_groups(self):
49 49
         fg_table = sqlutils.getTable(EmFieldGroup)
50 50
         req = fg_table.select(fg_table.c.uid).where(fg_table.c.class_id == self.class_id)
@@ -56,8 +56,12 @@ class EmType(EmComponent):
56 56
         return [ row['uid'] for row in rows ]
57 57
 
58 58
     ## Get the list of associated fields
59
-    # @return A list of EditorialModel::fields::EmField
59
+    # @return A list of EmField uid
60 60
     def fields(self):
61
+        res = []
62
+        for fguid in self.field_groups():
63
+            res += EmFieldGroup(fguid).fields()
64
+        return res
61 65
         pass
62 66
 
63 67
     ## Indicate that an optionnal field is used

Loading…
Cancel
Save