2017-10-20 44 views
0

有沒有辦法禁用媒體項目編輯按鈕?無論是在Camaleon配置中還是通過使用鉤子......在我的情況下,用戶只能上傳圖片並使用它們,但無法編輯它們!Camaleon-CMS:如何禁用媒體文件版本

謝謝!

回答

0

在當前版本中,您可以通過使用掛鉤「admin_before_load」添加css樣式來完成此操作。

應用程序/應用程序/主題/ my_theme /配置/ config.json "hooks": { "admin_before_load": ["my_function_admin_before_load"], .... } 應用程序/應用程序/主題/ my_theme/main_helper.rb def my_function_admin_before_load append_asset_content('<style>#cama_media_gallery .media_item .edit_item{display: none;}</style>') end

在當前的開發版本我加個卡鉤 「file_manager_edit_file」 和「 file_manager_del_file「

關心!

+0

感謝@Owen Peredo Diaz,它使用append_asset_content方法工作;) – jpac