Releases: moxuandi/yii2-helpers
Releases · moxuandi/yii2-helpers
修复上传目录设置
移除无用的$rootUrl
参数。
上传根目录控制,$rootPath
改为可在控制器中配置:
public function actions()
{
return [
'Kupload' => [
'class' => 'moxuandi\kindeditor\KindEditorUpload',
// 可选参数, 参考 config.php
'config' => [
// ... 其它参数
// 前后和后台入口文件在统一位置, /web/index.php, /web/admin.php:
'rootPath' => dirname(Yii::$app->request->scriptFile), // 前后台相同
// 前后和后台入口文件在不同的位置, /web/index.php, /web/admin/index.php:
'rootPath' => dirname(Yii::$app->request->scriptFile), // 前台
'rootPath' => dirname(dirname(Yii::$app->request->scriptFile)), // 后台
],
],
];
}
修改'替换随礼字符串'使用的方法
$randNum = rand(1, 10000000000) . rand(1, 10000000000);
改成:
$randNum = mt_rand().mt_rand();
重写, 发布v1.0
缩略图处理使用yii2-imagine扩展