You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/glossary.md
+17Lines changed: 17 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -505,4 +505,21 @@ content rule
505
505
trigger
506
506
A trigger is an event in Plone that causes the execution of defined actions.
507
507
Example triggers include object modified, user logged in, and workflow state changed.
508
+
509
+
FTI
510
+
Factory Type Information
511
+
Factory type information (FTI) is responsible for content creation in the portal.
512
+
FTI is responsible for the following:
513
+
514
+
- Which function is called when new content type is added.
515
+
- Icons available for content types.
516
+
- Creation views for content types.
517
+
- Permission and security.
518
+
- Whether discussion is enabled.
519
+
- Providing the `factory_type_information` dictionary.
520
+
This is used elsewhere in the code (often in `__init__.py` of a product) to set the initial values for a ZODB Factory Type Information object (an object in the `portal_types` tool).
521
+
522
+
```{seealso}
523
+
[`FactoryTypeInformation` class source code](https://github.com/zopefoundation/Products.CMFCore/blob/361a30e0c72a15a21f88433b8d5fc49331f36728/src/Products/CMFCore/TypesTool.py#L431)
0 commit comments