4

我在 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->attributename,当我var_dump($this)看到属性已定义但它们是:protected

我会很感激这方面的帮助:)

谢谢,汤姆

4

1 回答 1

6

你是如此接近!试试这个,让我知道它是否适合你,因为它适合我。(Joomla 2.5.6)

echo $this->element['imagedir'];
echo $this->element['imagetable'];
于 2012-06-26T14:12:59.057 回答