43 lines
1.8 KiB
HTML
43 lines
1.8 KiB
HTML
<?= Form::open(['class'=>'layout', 'onsubmit'=>'return false']) ?>
|
|
<div class="layout-row min-size">
|
|
<?= $this->makePartial('crop-toolbar') ?>
|
|
</div>
|
|
<div class="layout-row whiteboard">
|
|
<?= $this->makePartial('crop-tool-image-area') ?>
|
|
</div>
|
|
<div class="layout-row min-size whiteboard">
|
|
<div class="panel no-padding-bottom border-top">
|
|
<div class="form-buttons">
|
|
<div class="pull-right">
|
|
<button
|
|
type="button"
|
|
data-command="insert"
|
|
class="btn btn-primary">
|
|
<?= e(trans('backend::lang.media.crop_and_insert')) ?>
|
|
</button>
|
|
|
|
<button
|
|
type="button"
|
|
data-dismiss="popup"
|
|
class="btn btn-default no-margin-right">
|
|
<?= e(trans('backend::lang.form.cancel')) ?>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<input type="hidden" name="cropSessionKey" value="<?= e($cropSessionKey) ?>">
|
|
<input type="hidden" name="path" value="<?= e($path) ?>">
|
|
|
|
<input type="hidden" data-control="dimension-width" value="<?= $dimensions[0] ?>">
|
|
<input type="hidden" data-control="dimension-height" value="<?= $dimensions[1] ?>">
|
|
|
|
<input type="hidden" data-control="original-width" value="<?= $dimensions[0] ?>">
|
|
<input type="hidden" data-control="original-height" value="<?= $dimensions[1] ?>">
|
|
|
|
<input type="hidden" data-control="original-ratio" value="<?= $originalRatio ?>">
|
|
<input type="hidden" data-control="original-url" value="<?= e($imageUrl) ?>">
|
|
|
|
<?= $this->makePartial('resize-image-form') ?>
|
|
<?= Form::close() ?> |