PHP code example of fullscreeninteractive / silverstripe-dropdownimagefield
1. Go to this page and download the library: Download fullscreeninteractive/silverstripe-dropdownimagefield 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-dropdownimagefield example snippets
DropdownImageField::create('LanguageID', 'Select language',
LanguageObj::get(), // Source for items.
'ID', // Key field on item.
'Title', // Caption field on item.
'Icon' // Image field on item. Can be a method/relation that returns an image.
)