電話番号や履歴書など、drupal 7 のユーザー プロファイルにフィールドを追加するモジュールを開発したいのですが、その方法がわかりません (データベースを使用するか、フィールド API を使用するか) pls を助けてください。
明確なチュートリアルをいただければ幸いです。
質問する
4256 次
1 に答える
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);
これがうまくいくことを願っています...ムハンマド。
于 2012-05-15T07:24:16.763 に答える