将 Alfresco 中的文件夹模板共享到特定站点

Restrict folder templates in Alfresco share to a particular site

我正在使用 Alfresco 企业版 6.2.2

我正在尝试在 Alfresco 中创建文件夹结构,并将其限制为特定站点的用户。有办法吗?

谢谢

是的,您可以限制特定站点或特定组的文件夹模板菜单。

您需要使用共享扩展方法来扩展 toolbar.js。

下面link供大家参考。您可以采用相同的方法。

https://heshawa.wordpress.com/alfresco-create-from-template-menu-arrange-with-sub-menues/

例如。针对特定群体的定制。

<extension>
    <modules>
        <module>
            <id>Customize title menu for Collaborations</id>
            <version>1.0</version>
            <customizations>
                ....
            </customizations>
            
            <evaluator type="group.module.evaluator">
                <params>
                    <groups>GROUP_COLLABORATION_MENU,GROUP_COLLABORATION_MANAGERS,GROUP_ALFRESCO_ADMINISTRATORS</groups>
                    <groupRelation>OR</groupRelation>
                </params>
            </evaluator>
            <auto-deploy>true</auto-deploy>
            
        </module>
    </modules>
</extension>