/home/ivoiecob/email.hirewise-va.com/modules/SharedFiles/Manager.php
<?php
/**
 * This code is licensed under AGPLv3 license or Afterlogic Software License
 * if commercial version of the product was purchased.
 * For full statements of the licenses see LICENSE-AFTERLOGIC and LICENSE-AGPL3 files.
 */

namespace Aurora\Modules\SharedFiles;

/**
 * @license https://www.gnu.org/licenses/agpl-3.0.html AGPL-3.0
 * @license https://afterlogic.com/products/common-licensing Afterlogic Software License
 * @copyright Copyright (c) 2023, Afterlogic Corp.
 *
 * @package Filestorage
 */
class Manager extends \Aurora\Modules\PersonalFiles\Manager
{
    /**
     * @param \Aurora\System\Module\AbstractModule $oModule
     */
    public function __construct(\Aurora\System\Module\AbstractModule $oModule = null)
    {
        parent::__construct($oModule);

        $this->oStorage = new Storages\Sabredav\Storage($this);
    }

    /**
     *
     * @param string $sPublicId
     */
    public function ClearFiles($sPublicId)
    {
        $this->oStorage->clearPrivateFiles($sPublicId);
    }
}