1

我正在尝试将 owncloud 连接到我的 cms 中。但是我遇到了文件存储安装的问题。有没有人有关于如何在 OwnCloud 应用程序中创建自己的文件存储的示例。

我目前在一个自定义的活动应用程序中有以下代码(不同的部分允许登录 CMS 用户登录,这很有效):

class OC_Filestorage_HYN extends OC_Filestorage_Local {
    public function __construct($arguments) {
        global $SiteVisitor,$MultiSite;
        if( $SiteVisitor -> loggedin() && $SiteVisitor -> get_right( "owner" ) && defined("HYN_MS_DIR") && is_dir(HYN_MS_DIR) ) {
            $this -> datadir = HYN_MS_DIR;
        }
        return false;

    }
    public function mkdir($path){
        return false;
    }
    public function rmdir($path){
        return false;
    }
}

OC_Filesystem::clearMounts();
/**
*   @param 1: Class to handle Filestorage requests
*   @param 2: array of options
*   @param 3: mountpoint eg how to enter this storage in the view
*/
OC_Filesystem::mount( "OC_Filestorage_HYN" , array() , "/" );
4

0 回答 0