php – 在JFormField中访问自定义字段的自定义属性
作者:互联网
我在Joomla中创建了一个自定义字段类型,需要将参数传递给它.例如,我的JForm XML文件如下所示:
<?xml version="1.0" encoding="utf-8"?>
<form>
<fieldset addfieldpath="/administrator/components/com_gallery/models/fields">
<field name="images"
type="MultiImage"
label="Images"
description=""
imagetable="#__gallery_images"
imagedir="../images/gallery/originals/"
/>
</fieldset>
</form>
我想在我的自定义字段中访问imagetable和imagedir属性:
<?php
// No direct access to this file
defined('_JEXEC') or die;
jimport('joomla.form.formfield');
class JFormFieldMultiImage extends JFormField
{
protected $type = 'MultiImage';
public function getInput() {
//this is where i want to access it
$input = $this->imagetable;
return $input;
}
}
我假设您刚刚使用了$this->属性名称,当我使用var_dump($this)时,我可以看到属性已定义,但它们是:protected.
我会很感激这方面的一些帮助:)
谢谢,
汤姆
解决方法:
你真是太近了!尝试这个,让我知道它是否适合你,因为它适合我. (Joomla 2.5.6)
echo $this->element['imagedir'];
echo $this->element['imagetable'];
标签:php,joomla,joomla2-5 来源: https://codeday.me/bug/20190530/1182740.html