首页 > 电脑专区 > CMS教程 > 其它cms >

自定义drupal注册表单的方法

来源:互联网 2023-03-14 12:48:41 版权归原作者所有,如有侵权,请联系我们

本文实例讲述了自定义drupal注册表单的方法。分享给大家供大家参考。具体实现方法如下:G02办公区 - 实用经验教程分享!

drupal默认用户注册表单中只有用户名称,帐号密码,邮箱等字段,如果想对用户做一些好的交互,必须要用到用户一些稍微详细的信息,而drupal的hook_user可以很方便的让我们添加这些信息,比如我的站点要给用户加入性别、详细地址和个人简介,我们可以实现user钩子如下(我的模块叫snippet):G02办公区 - 实用经验教程分享!

注:本人对于字符串都没有加t函数做翻译,是为了提高速度,需要的用户可以适当修改。复制代码代码如下: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' => '个人资料(可选)',);$fields['personal_profile']['sex'] = array('#title' => '性别','#type' => 'radios','#default_value' => 0,'#options' => array('男' , '女'));$fields['personal_profile']['address'] = array('#type' => 'textfield','#title' => '现居住地址',);$fields['personal_profile']['introduction'] = array('#title' => '个人介绍', '#type' => 'textarea', '#rows' => 5, '#cols' => 50);return $fields;case 'form':$fields['personal_profile'] = array('#type' => 'fieldset','#title' => '个人资料(可选)','#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' => '现居住地址','#default_value' => $user->address,);$fields['personal_profile']['introduction'] = array('#title' => '个人介绍','#type' => 'textarea','#rows' => 5,'#cols' => 50,'#default_value' => $user->introduction);return $fields;}}其中的register这个op控制用户注册表单,而form这个op控制用户编辑自己个人资料的表单。form只是比register加入了一些默认值而已,而这些默认值是从登录用户的user对象中读取的,很简单吧。G02办公区 - 实用经验教程分享!

最后,如果你只是一个drupal使用者,不妨可以使用drupal内置的profile模块,手动配置和添加,更方便。G02办公区 - 实用经验教程分享!

希望本文所述对大家的drupal建站有所帮助。G02办公区 - 实用经验教程分享!

以上方法由办公区教程网编辑摘抄整理自互联网可供大家参考!G02办公区 - 实用经验教程分享!


标签: Drupal表单

办公区 Copyright © 2016-2023 www.bgqu.net. Some Rights Reserved. 备案号:湘ICP备2020019561号