web-dev-qa-db-ja.com

user_relationshipsを使用したPrivatemsg-リンクを表示→使用するプライベートメッセージを送信

ビューリンクを出力しようとしています-プライベートメッセージをユーザーに送信します。しかし、何も表示されません。 privatemsg6.x-2.x開発バージョンとuser_relationships6.x-1.xの使用

1
Alexander Kim

以下のコードで問題を解決しました:

<?php
$profile = content_profile_load('profile', $data->users_user_relationships_uid);
$url = privatemsg_get_link(array(user_load($profile->uid)));
print '<div class="pm">'. l(t('Send a private message to the author'), $url, array('attributes' => array('class' => 'lichnoe'))) .'</div>'; 
?>
1
Alexander Kim