このチュートリアルリンクを使用して、Joomla2.5のユーザープロファイルプラグインを作成しました
それはうまく機能しますが、「男性/女性」オプションであるため、テキストではなくラジオボタンとして追加したカスタムフィールドが必要です。
/plugins/user/profile10/profiles/profile.xmlでは次のようになります。
<field
name="gender"
type="text"
id="gender"
description="Male or Female?"
filter="string"
label="Male or Female?"
message="PLG_USER_PROFILE_FIELD_WEB_SITE_MESSAGE"
size="30"
/>
およびplugins/user / profile10 / profile10.xml:
<field name="register-require_gender" type="list"
description="Your gender"
label="Male or female?"
>
<option value="2">JOPTION_REQUIRED</option>
<option value="1">JOPTION_OPTIONAL</option>
<option value="0">JDISABLED</option>
</field>
type = "text"という行に気づきましたが、何に置き換えるのか、両方のオプションをどこに配置するのかわかりません。
誰かがそれを行う方法を知っていますか?前もって感謝します。