typo3中对于权限的控制可以精确到字段。我们可以在小地球里面的user group来设置权限。
字段是都显示在access list中是受 tca 配置的影响:
        "keywords" =>Array (
            "exclude" => 1,    //  设置为1的时候, 他会出现在权限配置列表里面,0的时候是不出现的。
            "label" => "LLL:EXT:dav_travel/locallang_db.xml:tx_davtravel_catalogue.key_words",
            "config" => Array (
                "type" => "input",
                "size" => "50",
            )
        ),
 官方文档的描述:When this option is set, the field is not available for non-admin users by default. Rather it must be specifically enabled by selecting the field in the list of “Allowed excludefields” in the setup of backend usergroups.  :)


若转载请注明出处: TYPO3中文网
本文地址: http://www.51typo3.cn/typo3/75.html