Joomla 2.5组件:如何在管理表单中为媒体字段设置目录



>我创建了一个自定义组件,在管理员表单中,我有一个字段来选择照片。

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" ->相同的结果。

如何设置directory以便媒体管理器打开/images/example/photos

试试这个:

<field name="photo" type="media"
    label="COM_EXAMPLE_FORM_LBL_PHOTO"
    description="COM_EXAMPLE_FORM_DESC_PHOTO" 
    filter="raw"
    directory="example/photos" 
/> 

注意:我只用了example/photos

相关内容

  • 没有找到相关文章

最新更新