大家好,我正在 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>