1: <?php
2: /**
3: * This code is licensed under Afterlogic Software License.
4: * For full statements of the license see LICENSE file.
5: */
6:
7: namespace Aurora\Modules\MailMultiAccountsPlugin;
8:
9: /**
10: * @license https://afterlogic.com/products/common-licensing Afterlogic Software License
11: * @copyright Copyright (c) 2023, Afterlogic Corp.
12: */
13: class Manager extends \Aurora\Modules\Mail\Managers\Accounts\Manager
14: {
15: /**
16: * @param int $iUserId
17: *
18: * @return bool
19: */
20: public function canCreate($iUserId)
21: {
22: return true;
23: }
24: }
25: