我創建了一個自定義字段,可以在編輯它時獲取相關人員和文章的主題。我想通過本文的類別標識,但我無法弄清楚如何執行它。下面是我的代碼: 在article.xml將參數傳遞給joomla中的自定義字段
<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只得到人,科這個文章可能被標記的類別。
它看起來像你是做一個joomla模塊?我對嗎??以及您使用的是哪個版本的joomla? –
我是新手,我只想在管理員中編輯comp_content。我正在使用joomla 2.5.7。我認爲問題是如何重寫方法getInput來傳遞參數,但我不能:| – hoanhung191290