privatemsg - send private message link in node-custom.tpl.php

Ссылку отправить личное сообщение пользователю (При помощи модуля privatemsg можно вывести следующим образом:

<?php
global $user;
if (arg(0) == 'user' && $user->uid == arg(1)){ // check if its own profile - then don't display
$url = privatemsg_get_link(array(user_load($node->uid)));
print '<div class="pm">'. l(t('Send a private message to the author'), $url, array('attributes' => array('class' => 'lichnoe'))) .'</div>';
}
?>