jfcherng-roundcube / show-folder-size
一个显示文件夹大小的Roundcube插件。
0.7.20
2024-07-06 19:46 UTC
Requires
- php: >=7.1.3
- roundcube/plugin-installer: ~0.1
Requires (Dev)
- friendsofphp/php-cs-fixer: ^3
- liip/rmt: ^1.5
- dev-master
- 0.7.20
- 0.7.19
- 0.7.18
- 0.7.17
- 0.7.16
- 0.7.15
- 0.7.14
- 0.7.13
- 0.7.12
- 0.7.11
- 0.7.7
- 0.7.6
- 0.7.5
- 0.7.4
- 0.7.3
- 0.7.2
- 0.7.1
- 0.7.0
- 0.6.4
- 0.6.3
- 0.6.2
- 0.6.1
- 0.6.0
- 0.5.4
- 0.5.3
- 0.5.2
- 0.5.1
- 0.5.0
- 0.4.13
- 0.4.12
- 0.4.11
- 0.4.10
- 0.4.9
- 0.4.8
- 0.4.7
- 0.4.6
- 0.4.5
- 0.4.4
- 0.4.3
- 0.4.2
- 0.4.1
- 0.4.0
- 0.3.0
- 0.2.8
- 0.2.7
- 0.2.6
- 0.2.5
- 0.2.4
- 0.2.3
- 0.2.2
- 0.2.1
- 0.2.0
- 0.1.1
- 0.1.0
- 0.0.1
- dev-php5
This package is auto-updated.
Last update: 2024-09-06 21:26:26 UTC
README
一个显示文件夹大小的Roundcube插件。
需求
我只测试了以下环境下的此插件。其他配置可能也有机会工作。
- PHP: >=
7.1.3
- Roundcube:
1.3.9
,1.4.0
- 支持的皮肤:
Classic
,Larry
,Elastic
如果你需要支持PHP 5.4
~ 7.0
,请访问php5分支,或者让Composer决定安装的版本。但请注意,我并不打算维护php5
分支,因为即使PHP 5.6现在也已经相当过时了。
演示
如何在Roundcube中安装此插件
通过Composer安装(推荐)
此插件已通过名为Packagist的jfcherng-roundcube/show-folder-size发布。
- 前往你的
ROUNDCUBE_HOME
(即你的Roundcube的根目录)。 - 运行
composer require jfcherng-roundcube/show-folder-size
。 - 如果你想进行插件配置,将
config.inc.php.dist
复制到config.inc.php
,然后编辑config.inc.php
。
手动安装
- 在
ROUNDCUBE_HOME/plugins
中创建show_folder_size
文件夹(如果不存在的话)。 - 将所有插件文件复制到那里。
- 如果你想进行插件配置,将
config.inc.php.dist
复制到config.inc.php
,然后编辑config.inc.php
。(由于目前此插件没有配置,你可以跳过此步骤。) - 编辑你的Roundcube配置文件(
ROUNDCUBE_HOME/config/config.inc.php
或可能是/etc/roundcube/config.inc.php
),找到$config['plugins']
并添加'show_folder_size',
。
<?php // some other codes... $config['plugins'] = [ // some other plugins... 'show_folder_size', // <-- add this line ];
开发者
编译前端资源
- 你需要安装Node.js。
- 通过
npm install
(或如果你更喜欢的话,使用yarn
)安装依赖项 - 使用
./compile.sh
编译资源