PHP code example of plato-creative / silverstripe-imgix
1. Go to this page and download the library: Download plato-creative/silverstripe-imgix 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/ */
plato-creative / silverstripe-imgix example snippets
use PlatoCreative\Imgix\Imgix;
class MyCustomPage extends Page
{
private static $has_one = array(
'Image' => Imgix::class
);
private static $many_many = array(
'Images' => Imgix::class,
);
public function getCMSFields()
{
$fields = parent::getCMSFields();
$fields->addFieldsToTab(
'Root.Main',
array(
UploadField::create(
'Image',
'Image'
),
UploadField::create(
'Images',
'Images'
)
)
);
return $fields;
}
}