1. Go to this page and download the library: Download goldfinch/image-editor 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/ */
goldfinch / image-editor example snippets
use SilverStripe\Assets\Image;
use Goldfinch\ImageEditor\Forms\EditableUploadField;
private static $has_one = [
'Image' => Image::class,
];
private static $owns = [
'Image',
];
public function getCMSFields()
{
$fields = parent::getCMSFields();
$fields->addFieldsToTab(
'Root.Main',
[
// [
// TextField::create('Title')
// Other fields ...
// ],
...EditableUploadField::create('Image', 'Image', $fields, $this)->getFields(),
// [
// Other fields ...
// ],
]
);
return $fields;
}