[cv6] Custom Field Extension

Add-ons [cv6] Custom Field Extension 1.1.0 Release Candidate 3

Register & Get access to index
  • 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('');
Back
Top Bottom