| 1234567891011121314151617181920212223242526 |
- <?php
- namespace common\widgets\cropper;
- use Yii;
- use yii\web\Controller;
- /**
- * Class CropperController
- * @package common\widgets\cropper
- * @author jianyan74 <751393839@qq.com>
- */
- class CropperController extends Controller
- {
- /**
- * @return string
- */
- public function actionCrop()
- {
- return $this->renderAjax('@common/widgets/cropper/views/crop', [
- 'boxId' => Yii::$app->request->get('boxId'),
- 'multiple' => Yii::$app->request->get('multiple'),
- 'aspectRatio' => Yii::$app->request->get('aspectRatio'),
- ]);
- }
- }
|