国产探花免费观看_亚洲丰满少妇自慰呻吟_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ā)表
主站蜘蛛池模板: 宁明县| 牙克石市| 张家川| 如皋市| 新野县| 静海县| 祥云县| 和龙市| 正定县| 翁牛特旗| 四子王旗| 特克斯县| 遂宁市| 祁连县| 桑日县| 博乐市| 禄丰县| 绍兴市| 盈江县| 崇阳县| 勃利县| 安塞县| 崇仁县| 剑川县| 稷山县| 桐城市| 武隆县| 高台县| 交口县| 浦江县| 东明县| 吉首市| 博罗县| 项城市| 沈阳市| 永平县| 洛川县| 清涧县| 泾源县| 呼和浩特市| 蒲江县|