You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
56 lines
1.7 KiB
56 lines
1.7 KiB
2 months ago
|
<?php
|
||
|
|
||
|
Kirby::plugin('steirico/kirby-plugin-image-crop-field', [
|
||
|
'fileMethods' => [
|
||
|
'croppedImage' => function() {
|
||
|
return CroppedImage::croppedImage($this);
|
||
|
},
|
||
|
],
|
||
|
'fields' => [
|
||
|
'imagecrop' => [
|
||
|
'props' => [
|
||
|
'image' => function() {
|
||
|
return $this->model()->url();
|
||
|
},
|
||
|
|
||
|
'minSize' => function(array $minSize = []) {
|
||
|
$width = max(A::get($minSize, 'width', 1), 1);
|
||
|
$height = max(A::get($minSize, 'height', 1), 1);
|
||
|
return array(
|
||
|
'width' => $width,
|
||
|
'height' => $height
|
||
|
);
|
||
|
},
|
||
|
|
||
|
'targetSize' => function(array $targetSize = []) {
|
||
|
return $targetSize;
|
||
|
},
|
||
|
|
||
|
'preserveAspectRatio' => function(bool $preserveAspectRatio = false){
|
||
|
return $preserveAspectRatio;
|
||
|
},
|
||
|
|
||
|
'value' => function($value = []){
|
||
|
$method = kirby()->request()->method();
|
||
|
if(($method == "PATCH") || ($method == "POST")) {
|
||
|
new CroppedImage($this->model());
|
||
|
}
|
||
|
|
||
|
if(is_array($value)){
|
||
|
return $value;
|
||
|
} else {
|
||
|
return Data::decode($value, 'yaml');
|
||
|
}
|
||
|
}
|
||
|
]
|
||
|
],
|
||
|
],
|
||
|
'hooks' => [
|
||
|
'file.delete:before' => function ($file) {
|
||
|
$croppedImage = $file->croppedImage();
|
||
|
if ($croppedImage->exists()) {
|
||
|
$croppedImage->delete();
|
||
|
}
|
||
|
}
|
||
|
]
|
||
|
]);
|