| 1 |
<?php |
<?php |
| 2 |
/* $Id: subscription.module,v 1.11 2005/12/05 13:55:44 weitzman Exp $ */ |
/* $Id: subscription.module,v 1.12 2006/04/04 17:47:22 ee Exp $ */ |
| 3 |
|
|
| 4 |
function subscription_help($section) { |
function subscription_help($section) { |
| 5 |
switch ($section) { |
switch ($section) { |
| 542 |
if (user_access('manage subscriptions') && $user->uid != $account->uid) { |
if (user_access('manage subscriptions') && $user->uid != $account->uid) { |
| 543 |
$links[] = l(t("Subscribe to content created by this user"), 'subscription/add/user/all/' . $account->uid); |
$links[] = l(t("Subscribe to content created by this user"), 'subscription/add/user/all/' . $account->uid); |
| 544 |
$links[] = l(t("Subscribe to comments to this user's content"), 'subscription/add/user/comment/' . $account->uid); |
$links[] = l(t("Subscribe to comments to this user's content"), 'subscription/add/user/comment/' . $account->uid); |
| 545 |
return array(t('Subscriptions') => theme('item_list', $links)); |
return array(t('Subscriptions') => array(array('title'=>t("Special subscriptions"),'value'=>theme('item_list', $links)))); |
| 546 |
} |
} |
| 547 |
} |
} |
| 548 |
} |
} |