1: <?php
2: /**
3: * Copyright 2010-2014 Horde LLC (http://www.horde.org/)
4: *
5: * See the enclosed file COPYING for license information (GPL). If you
6: * did not receive this file, see http://www.horde.org/licenses/gpl.
7: *
8: * @author Michael Slusarz <slusarz@horde.org>
9: * @category Horde
10: * @copyright 2010-2014 Horde LLC
11: * @license http://www.horde.org/licenses/gpl GPL
12: * @package IMP
13: */
14:
15: /**
16: * Null implementation of the quota driver.
17: *
18: * @author Michael Slusarz <slusarz@horde.org>
19: * @category Horde
20: * @copyright 2010-2014 Horde LLC
21: * @license http://www.horde.org/licenses/gpl GPL
22: * @package IMP
23: */
24: class IMP_Quota_Null extends IMP_Quota
25: {
26: /**
27: */
28: public function getQuota($mailbox = null)
29: {
30: return array(
31: 'limit' => 0,
32: 'usage' => 0
33: );
34: }
35:
36: }
37: