jfcherng-roundcube / show-folder-size
A Roundcube plugin which shows folder size.
Fund package maintenance!
www.paypal.me/jfcherng/5usd
Installs: 12 218
Dependents: 0
Suggesters: 0
Security: 0
Stars: 19
Watchers: 3
Forks: 8
Open Issues: 3
Type:roundcube-plugin
pkg:composer/jfcherng-roundcube/show-folder-size
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-dependabot/npm_and_yarn/cross-spawn-7.0.6
- dev-dependabot/npm_and_yarn/elliptic-6.6.0
- dev-php5
This package is auto-updated.
Last update: 2025-10-07 18:14:25 UTC
README
A Roundcube plugin which shows folder size.
Requirements
I only test this plugin with following environments. Other setup may work with luck.
- PHP: >=
7.1.3 - Roundcube:
1.3.9,1.4.0 - Supported skins:
Classic,Larry,Elastic
If you need support for PHP 5.4 ~ 7.0, go to the
php5
branch or just let Composer decide the version to be installed. But note that
I am not meant to maintain the php5 branch because even PHP 5.6 is quite outdated nowadays.
Demo
How to install this plugin in Roundcube
Install via Composer (Recommended)
This plugin has been published on Packagist by the name of jfcherng-roundcube/show-folder-size.
- Go to your
ROUNDCUBE_HOME(i.e., the root directory of your Roundcube). - Run
composer require jfcherng-roundcube/show-folder-size. - If you want to do plugin configuration, copy
config.inc.php.disttoconfig.inc.phpand then editconfig.inc.php.
Install manually
- Create folder
show_folder_sizeinROUNDCUBE_HOME/pluginsif it does not exist. - Copy all plugin files there.
- If you want to do plugin configuration, copy
config.inc.php.disttoconfig.inc.phpand then editconfig.inc.php. (You can skip this step since there is no configuration for this plugin at this moment.) - Edit your Roundcube's config file (
ROUNDCUBE_HOME/config/config.inc.phpor maybe/etc/roundcube/config.inc.php), locate$config['plugins']and add'show_folder_size',.
<?php // some other codes... $config['plugins'] = [ // some other plugins... 'show_folder_size', // <-- add this line ];
For Developers
Compile Frontend Assets
- You will need to have Node.js installed.
- Install dependencies via
npm install(oryarnif you prefer) - Compile assets with
./compile.sh
