예제 #1
0
function lists_lists_page($user)
{
    // Show a user's lists
    $lists = twitter_lists_user_lists($user);
    $content = "<p><a href='" . BASE_URL . "lists/{$user}/memberships'>" . __("Following") . " {$user} " . __("'s Lists") . "</a> | <strong>{$user} " . __("'s Lists") . "</strong></p>";
    $content .= theme('lists', $lists);
    theme('page', "{$user} " . __("'s Lists"), $content);
}
예제 #2
0
파일: lists.php 프로젝트: icheyne/Dabr
function lists_lists_page($user)
{
    // Show a user's lists
    $lists = twitter_lists_user_lists($user);
    $content = "<p><a href='lists/{$user}/memberships'>Lists following {$user}</a> | <strong>Lists {$user} follows</strong></p>";
    $content .= theme('lists', $lists);
    theme('page', "{$user}'s lists", $content);
}
예제 #3
0
파일: lists.php 프로젝트: vinazol/Dabr
function lists_lists_page($user)
{
    // Show a user's lists
    $lists = twitter_lists_user_lists($user);
    $content = "<p>\n\t\t\t\t\t\t<a href='lists/{$user}/memberships'>" . sprintf(_(LIST_FOLLOWING), $user) . "</a> | " . "<strong>" . sprintf(_(LIST_USER_FOLLOWS), $user) . "</strong>" . "</p>";
    $content .= theme('lists', $lists);
    theme('page', sprintf(_(USERS_LISTS_TITLE), $user), $content);
}