summaryrefslogtreecommitdiff
path: root/program/lib/Roundcube/rcube_storage.php
diff options
context:
space:
mode:
authorAleksander Machniak <alec@alec.pl>2014-06-24 19:16:18 +0200
committerAleksander Machniak <alec@alec.pl>2014-06-24 19:16:18 +0200
commit6fa1a0da1f0902f10be8fc4eb24180f8e3453c17 (patch)
tree48daf190a25026e5404a406aeb9107710439b9de /program/lib/Roundcube/rcube_storage.php
parent750de3189cd96505747c10b24ab055cf0bdcbdce (diff)
Extend get_quota() so it's possible to specify GETQUOTAROOT folder and return full quota info (including all roots and types, e.g. MESSAGE) - for future use
Diffstat (limited to 'program/lib/Roundcube/rcube_storage.php')
-rw-r--r--program/lib/Roundcube/rcube_storage.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/program/lib/Roundcube/rcube_storage.php b/program/lib/Roundcube/rcube_storage.php
index c1293961c..ccb28c680 100644
--- a/program/lib/Roundcube/rcube_storage.php
+++ b/program/lib/Roundcube/rcube_storage.php
@@ -918,9 +918,11 @@ abstract class rcube_storage
/**
* Get mailbox quota information.
*
+ * @param string $folder Folder name
+ *
* @return mixed Quota info or False if not supported
*/
- abstract function get_quota();
+ abstract function get_quota($folder = null);
/* -----------------------------------------