国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁(yè) > 網(wǎng)站 > 建站經(jīng)驗(yàn) > 正文

自定義drupal注冊(cè)表單的方法

2024-08-30 19:07:47
字體:
來(lái)源:轉(zhuǎn)載
供稿:網(wǎng)友

本文實(shí)例講述了自定義drupal注冊(cè)表單的方法。分享給大家供大家參考。具體實(shí)現(xiàn)方法如下:

drupal默認(rèn)用戶注冊(cè)表單中只有用戶名稱,帳號(hào)密碼,郵箱等字段,如果想對(duì)用戶做一些好的交互,必須要用到用戶一些稍微詳細(xì)的信息,而drupal的hook_user可以很方便的讓我們添加這些信息,比如我的站點(diǎn)要給用戶加入性別、詳細(xì)地址和個(gè)人簡(jiǎn)介,我們可以實(shí)現(xiàn)user鉤子如下(我的模塊叫snippet):

注:本人對(duì)于字符串都沒(méi)有加t函數(shù)做翻譯,是為了提高速度,需要的用戶可以適當(dāng)修改。

function snippet_user($op, &$edit, &$user, $category = NULL) {
switch ($op) {
// User is registering.
case 'register':
// Add a field set to the user registration form.
$fields['personal_profile'] = array(
'#type' => 'fieldset',
'#title' => '個(gè)人資料(可選)',
);
$fields['personal_profile']['sex'] = array(
'#title' => '性別',
'#type' => 'radios',
'#default_value' => 0,
'#options' => array('男' , '女')
);
$fields['personal_profile']['address'] = array(
'#type' => 'textfield',
'#title' => '現(xiàn)居住地址',
);
$fields['personal_profile']['introduction'] = array('#title' => '個(gè)人介紹', '#type' => 'textarea', '#rows' => 5, '#cols' => 50);
return $fields;
case 'form':
$fields['personal_profile'] = array(
'#type' => 'fieldset',
'#title' => '個(gè)人資料(可選)',
'#weight' => 1,
);
$fields['personal_profile']['sex'] = array(
'#title' => '性別',
'#type' => 'radios',
'#default_value' => 0,
'#options' => array('男' , '女'),
'#default_value' => $user->sex,
);
$fields['personal_profile']['address'] = array(
'#type' => 'textfield',
'#title' => '現(xiàn)居住地址',
'#default_value' => $user->address,
);
$fields['personal_profile']['introduction'] = array(
'#title' => '個(gè)人介紹',
'#type' => 'textarea',
'#rows' => 5,
'#cols' => 50,
'#default_value' => $user->introduction
);
return $fields;
}
}

 
其中的register這個(gè)op控制用戶注冊(cè)表單,而form這個(gè)op控制用戶編輯自己個(gè)人資料的表單。form只是比register加入了一些默認(rèn)值而已,而這些默認(rèn)值是從登錄用戶的user對(duì)象中讀取的,很簡(jiǎn)單吧。

最后,如果你只是一個(gè)drupal使用者,不妨可以使用drupal內(nèi)置的profile模塊,手動(dòng)配置和添加,更方便。

希望本文所述對(duì)大家的drupal建站有所幫助。

發(fā)表評(píng)論 共有條評(píng)論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 灵璧县| 石台县| 凉山| 吉木乃县| 曲松县| 双流县| 甘泉县| 安福县| 泾阳县| 嘉鱼县| 清水县| 五大连池市| 即墨市| 宿州市| 怀柔区| 冕宁县| 北川| 四川省| 安陆市| 临夏市| 星子县| 苗栗县| 鄂伦春自治旗| 西盟| 铅山县| 渑池县| 阿克苏市| 阳原县| 广元市| 靖边县| 赫章县| 全南县| 屏东县| 博野县| 邵东县| 徐水县| 舒城县| 徐州市| 集贤县| 珠海市| 彩票|