PHP code example of fullscreeninteractive / silverstripe-manyfield
1. Go to this page and download the library: Download fullscreeninteractive/silverstripe-manyfield library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
fullscreeninteractive / silverstripe-manyfield example snippets
use FullscreenInteractive\ManyField\ManyField;
$fields = new FieldList(
$many = ManyField::create('SwabList', [
TextField::create('Swab'),
TextField::create('TestSite'),
TextField::create('Description'),
TextField::create('Material')
])
);