如何以编程方式在Drupal 7中向用户配置文件添加新字段

时间:2012-05-14 07:49:32

标签: php drupal drupal-7 drupal-fields drupal-field-api

我想开发一个模块,在drupal 7中为用户个人资料添加字段,如电话号码和简历...... 我不知道该怎么做(使用数据库或使用字段API) 请帮帮我 任何明确的教程将不胜感激。

2 个答案:

答案 0 :(得分:5)

尝试按照以下代码

    $myField_name = "NEW_FIELD_NAME";
    if(!field_info_field($myField_name)) // check if the field already exists.
    {
        $field = array(
            'field_name'    => $myField_name,
            'type'          => 'text',
        );
        field_create_field($field);

        $field_instance = array(
            'field_name'    => $myField_name,
            'entity_type'   => 'user', // change this to 'node' to add attach the field to a node
            'bundle'        => 'user', // if chosen 'node', type here the machine name of the content type. e.g. 'page'
            'label'         => t('Field Label'),
            'description'   => t(''),
            'widget'        => array(
                'type'      => 'text_textfield',
                'weight'    => 10,
            ),
            'formatter'     => array(
                'label'     => t('field formatter label'),
                'format'    => 'text_default'
            ),
            'settings'      => array(
            )
        );
        field_create_instance($field_instance);

希望这有效......穆罕默德。

答案 1 :(得分:2)

您可以使用 Profile2 模块:http://drupal.org/project/profile2