2

大家好,我正在 Joomla 2.5/3 中开发自定义表单字段类型。但是我的代码不起作用,我的意思是当我按下它时,它不会显示消息并且它有不同的 ID。这是我的代码:

{module}/elements/testfield.php

<?php

/**
 * @copyright   Copyright (C) 2011 Cedric KEIFLIN alias ced1870
 * http://www.joomlack.fr
 * @license     GNU/GPL
 * */
// no direct access
defined('_JEXEC') or die('Restricted access');

class JFormFieldTestfield extends JFormField {

    protected $type = 'testfield';

    protected function getInput() {
        $document = JFactory::getDocument();
        $html = '<input name="' . $this->name . '" id="xxxfffaaa" value="' . $this->value . '" onclick="" />';
        return $html;
    }

    protected function getLabel() {
    }

}

*

{module}/{module_name}.xml

...     
<fields name="params">
            <fieldset name="basic">

                ....
                <field name="blablaname" type="testfield" label="this is label"/>

            </fieldset>
        </fields>
4

1 回答 1

2

您需要将以下代码添加到fields标签中

addfieldpath="modules/mod_mymodule/elements"

所以你的代码看起来像这样:

<fields name="params" addfieldpath="modules/mod_mymodule/elements">
    <fieldset name="basic">
        <field name="blablaname" type="testfield" label="this is label"/>
    </fieldset>
</fields>
于 2013-01-28T16:24:19.243 回答