PHP code example of salted-herring / salted-cropper
1. Go to this page and download the library: Download salted-herring/salted-cropper 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/ */
salted-herring / salted-cropper example snippets
protected static $has_one = array(
'Photo' => 'SaltedCroppableImage'
);
public function getCMSFields()
{
$fields = parent::getCMSFields();
...
// adding a free cropper
$fields->addFieldToTab(TAB_NAME, CroppableImageField::create('PhotoID', A_TITLE_TO_THE_FILED);
// adding cropper with ratio
$fields->addFieldToTab(TAB_NAME, CroppableImageField::create('PhotoID', A_TITLE_TO_THE_FILED)->setCropperRatio(16/9));
...
return $fields;
}
protected static $has_one = array(
'Photo' => 'Image'
);
public function getCMSFields() {
$fields = parent::getCMSFields();
...
// adding a free cropper
$fields->addFieldToTab(TAB_NAME, SaltedUploader::create('Photo', A_TITLE_TO_THE_FILED);
// adding cropper with ratio
$fields->addFieldToTab(TAB_NAME, SaltedUploader::create('Photo', A_TITLE_TO_THE_FILED)->setCropperRatio(16/9));
...
return $fields;
}
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.