Skip to content

Releases: moxuandi/yii2-helpers

修复上传目录设置

02 Oct 12:08
Compare
Choose a tag to compare

移除无用的$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)),  // 后台
      ],
    ],
  ];
}

修改'替换随礼字符串'使用的方法

02 Oct 12:07
Compare
Choose a tag to compare
$randNum = rand(1, 10000000000) . rand(1, 10000000000);

改成:

$randNum = mt_rand().mt_rand();

重写, 发布v1.0

02 Oct 12:05
Compare
Choose a tag to compare

缩略图处理使用yii2-imagine扩展

旧版归档

02 Oct 12:03
Compare
Choose a tag to compare

旧版归档