Example #1
0
function lists_membership_page($user)
{
    // Show lists a user belongs to
    $lists = twitter_lists_user_memberships($user);
    $content = "<p><strong>" . __("Following") . " {$user} " . __("'s Lists") . "</strong> | <a href='" . BASE_URL . "lists/{$user}'>{$user} " . __("'s Lists") . "</a></p>";
    $content .= theme('lists', $lists);
    theme('page', __("Following") . " {$user} " . __("'s Lists"), $content);
}
Example #2
0
function lists_membership_page($user)
{
    // Show lists a user belongs to
    $lists = twitter_lists_user_memberships($user);
    $content = "<p><strong>Lists following {$user}</strong> | <a href='lists/{$user}'>Lists {$user} follows</a></p>";
    $content .= theme('lists', $lists);
    theme('page', 'List memberhips', $content);
}
Example #3
0
function lists_membership_page($user)
{
    // Show lists a user belongs to
    $lists = twitter_lists_user_memberships($user);
    $content = "<p>\n\t\t\t\t\t\t<strong>" . sprintf(_(LIST_FOLLOWING), $user) . "</strong> | " . "<a href='lists/{$user}'>" . sprintf(_(LIST_USER_FOLLOWS), $user) . "</a>" . "</p>";
    $content .= theme('lists', $lists);
    theme('page', _(MEMBERSHIP_LISTS_TITLE), $content);
}