1

我创建了一个自定义字段,当我编辑它时获取相关人员,文章的主题。我想传递这篇文章的类别 ID,但我不知道该怎么做。下面是我的代码:在article.xml

<fields name="idn_tags">
        <field name="idn_tags_people" type="IdnTagsPeopleCheckboxes" />
        <field name="idn_tags_subject" type="IdnTagsSubjectCheckboxes" />
</fields>

在edit.php中

<?php echo $this->form->getInput('idn_tags_people','idn_tags'); ?>
<?php echo $this->form->getInput('idn_tags_subject','idn_tags'); ?>

在每个类 IdnTagsPeopleCheckboxes 和 IdnTagsSubjectCheckboxes 中,我想传递当前文章的类别 id 以仅获取人员,该类别的主题,哪些文章可能被标记。

4

2 回答 2

1

Joomla 已经介绍了将自定义字段添加到文章组件阅读此内容。如果您有任何问题,请告诉我。也读这个

于 2012-12-03T06:14:54.573 回答
0

好的!只需这样做:

<?php $this->form->setValue('idn_tags_people','idn_tags', $[Your Value]); ?>
<?php echo $this->form->getInput('idn_tags_people','idn_tags'); ?>
于 2013-04-26T04:22:46.937 回答