FLEXFORMS IN CONTENT ELEMENTS --------------------------------------- This extension adds a field 'ce_flexform' of type 'flex' to the tt_content table. It furthermore includes the class ceflexform which contains just one function ceflexform::addCEFlexFormValue() which should be used by extension programmers in ext_tables.php files to add a flexform field to their Content Element. If you already programmed your first extension you will most likely know that there already exists a standard for adding flexforms to Plugins (which is a subtype of Content Elements) but not for Content Elements. I've created this extension in order to establish some sort of standard for adding a flexform to Content Elements. Hopefully this will go into the core at some point in the future. USAGE ------- 1) First of all you need to make your extension dependent on the ceflexform extension. This is done by editing the ext_emconf.php file inside your extension folder. The php-array inside this file contains a key, 'dependencies' which should look like this: 'dependencies' => 'cms,ceflexform' 2) Next you need to edit your ext_tables.php file. Below you'll see how a basic setup should look like. Note that the ceflexform::addCEFLexformValue() function works pretty much the same way as the t3lib_extMgm::addPiFlexFormValue().