TA的每日心情 | 開心 2022-2-17 08:27 |
---|
簽到天數: 14 天 [LV.3]考上駕照
管理員
- 積分
- 4124
|
下載路徑檔案
source\class\task\task_profile.php
針對自己所需要完善的資料欄位去修改這邊
- $fields = array('realname', 'gender', 'birthyear', 'birthmonth', 'birthday', 'bloodtype', 'affectivestatus',
- 'birthprovince','birthcity', 'resideprovince', 'residecity');
複製代碼
當然也是可以驗證自定義欄位,自訂欄位判別是field1~7
所以可以這樣寫
- $fields = array('gender', 'birthyear', 'birthmonth', 'bi<font>rthday',
- 'birthprovince','birthcity', 'resideprovince', 'residecity',
- 'field1', 'field2', 'field5', 'field6', 'field7');
複製代碼
對應的函數變量呢?
我們去依照路徑中的
source\language\task\lang_profile.php
- 'profile_fields' => array(
- 'mp.realname' => '姓名',
- 'mp.gender' => '性别',
- 'mp.birthyear' => '生日(年)',
- 'mp.birthmonth' => '生日(月)',
- 'mp.birthday' => '生日(日)',
- 'mp.bloodtype' => '血型',
- 'mp.affectivestatus' => '情感狀態',
- 'mp.birthprovince' => '家鄉(省)',
- 'mp.birthcity' => '家鄉(市)',
- 'mp.resideprovince' => '居住地(省)',
- 'mp.residecity' => '居住地(市)',
- )
複製代碼
|
上一篇:discuz 道具的程式放在那裡
|