web-dev-qa-db-ja.com

プログラムでカスタムユーザーフィールドにアクセスする

次の場所にあるすべてのユーザーにノード参照フィールド(マシン名:field_node)を追加しました。

example.com/admin/config/people/accounts/fields/

私は今カスタムモジュール&hook_node_access

ユーザーがログインしているときに、プログラムでノード参照フィールドにアクセスするにはどうすればよいですか?

8
user1706487

field_get_items() ;を使用して、任意のエンティティからフィールド値を取得できます。ログインしたユーザーはグローバルな_$user_オブジェクトで利用でき、そのオブジェクトにフィールドをロードするには user_load() を使用できます。

それらをまとめると、次のようなものが得られます。

_// Get a fully loaded entity object for the logged in user.
$account = user_load($GLOBALS['user']->uid);

// Extract the field items
$field_items = field_get_items('user', $account, 'field_node');
if ($field_items) {
  // This will be 'target_id' if you're using the Entity Reference module, 
  // or 'nid' if you're using References
  $column_name = '?'; 

  $nid = $field_items[0][$column_name];
}
_

必要に応じて、それは抽象的なコードです。

hook_node_access()には_$account_オブジェクトが既に渡されていることに注意してください(アクセスチェックが行われている場合は、ログインしているユーザーになります)。チェックしてください。 user_load()を使用して実行する必要がある場合もありますが、少しデバッグするだけで簡単に確認できます。

10
Clive

ここでは、コアAPIまたはentity_metadata_wrapperを使用する2つのオプション

global $user;
// Load full user account object
$account = user_load($user->uid);
// Get field;
$items = field_get_items('user', $account, 'field_node');
// Debug info
drupal_set_message('<pre>'.var_export($items,1).'</pre>');
// This gets the sanitized output, from the first field delta value (0)
$output = field_view_value('user', $account, 'field_node', $items[0]);

関連する機能:

Entity APIモジュールを使用している場合は、entity_metadata_wrapperを使用することもできます。

global $user;
$user_wrapper = entity_metadata_wrapper('user', $user);
drupal_set_message('<pre>'.var_export($user_wrapper->field_node->raw(),1).'</pre>'); // Raw value
drupal_set_message('<pre>'.var_export($user_wrapper->field_node->value(),1).'</pre>'); // Loaded value

[〜#〜] edit [〜#〜]:すみません、私がこの回答を投稿しているときに回答が投稿されました。

6
David Thomas