我创建了一个自定义组件,在admin-form中,我有一个字段来选择照片。
在administrator/models/forms/example.xml
我可以定义该字段:
<field name="photo" type="media"
label="COM_EXAMPLE_FORM_LBL_PHOTO"
description="COM_EXAMPLE_FORM_DESC_PHOTO"
filter="raw"
directory="/images/example/photos"
/>
问题:
当我按下选择按钮时,媒体管理器的目录设置为/images
。
我试过directory="JPATH_ROOT/images/example/photos"
- &gt;同样的结果。
如何设置directory
以便媒体经理打开/images/example/photos
?
答案 0 :(得分:0)
试试这个:
<field name="photo" type="media"
label="COM_EXAMPLE_FORM_LBL_PHOTO"
description="COM_EXAMPLE_FORM_DESC_PHOTO"
filter="raw"
directory="example/photos"
/>
注意:我只使用了example/photos