[cv6] Custom Field Extension

Unmaintained [cv6] Custom Field Extension 1.1.0 Release Candidate 3

No permission to download
How to use these Fields in your own AddOn if you want to integrate Custom Fields:

There are 6 simple steps to do so:

Add Fields to Field Table: (Here ate the code lines for the setup process.)


PHP:
$table->addColumn('cv6_image_count', 'int')->setDefault(0);
$table->addColumn('cv6_options', 'blob')->nullable()->setDefault(NULL);
$table->addColumn('cv6_calculation', 'blob')->nullable()->setDefault(NULL);
$table->addColumn('cv6_placeholder', 'varchar', '50')->setDefault('');

tbc
Top Bottom