當前位置: 首頁>>代碼示例>>PHP>>正文


PHP SocialManager::display_individual_user方法代碼示例

本文整理匯總了PHP中SocialManager::display_individual_user方法的典型用法代碼示例。如果您正苦於以下問題:PHP SocialManager::display_individual_user方法的具體用法?PHP SocialManager::display_individual_user怎麽用?PHP SocialManager::display_individual_user使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在SocialManager的用法示例。


在下文中一共展示了SocialManager::display_individual_user方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: array

$language_file = array('index','registration','messages','userInfo');

$cidReset = true;
require_once 'main/inc/global.inc.php';

/**
 * Access permissions check
 */
api_block_anonymous_users();

/**
 * Treat URL arguments
 */
$array_keys = array_keys($_GET);

if (!empty($array_keys)) {
	$username 	= substr($array_keys[0],0,20); // max len of an username
	$friend_id 	= UserManager::get_user_id_from_username($username);

	if ($friend_id) {
		SocialManager::display_individual_user($friend_id);
	} else {
		// we cant find your friend
		header('Location: whoisonline.php');
		exit;
	}
} else {
		// we cant find your friend
	header('Location: whoisonline.php');
	exit;
}
開發者ID:annickvdp,項目名稱:Chamilo1.9.10,代碼行數:31,代碼來源:user.php

示例2: isset

        if (!isset($_GET['id'])) {
            if (api_get_setting('allow_social_tool') == 'true') {
                if (!api_is_anonymous()) {
                    $query = isset($_GET['q']) ? $_GET['q'] : null;
                    $social_right_content .= '<div class="span9">' . UserManager::get_search_form($query) . '</div>';
                }
            }
            $social_right_content .= SocialManager::display_user_list($user_list);
        }
    }
    if (isset($_GET['id'])) {
        if (api_get_setting('allow_social_tool') == 'true') {
            header("Location: " . api_get_path(WEB_CODE_PATH) . "social/profile.php?u=" . intval($_GET['id']));
            exit;
        } else {
            SocialManager::display_individual_user($_GET['id']);
        }
    }
} else {
    api_not_allowed();
    exit;
}
$app['title'] = get_lang('UsersOnLineList');
$tpl = $app['template'];
if (api_get_setting('allow_social_tool') == 'true' && !api_is_anonymous()) {
    $tpl->setHelp('Groups');
    $tpl->assign('social_left_content', $social_left_content);
    $tpl->assign('social_right_content', $social_right_content);
    $social_layout = $tpl->get_template('layout/social_layout.tpl');
    $tpl->display($social_layout);
} else {
開發者ID:ilosada,項目名稱:chamilo-lms-icpna,代碼行數:31,代碼來源:whoisonline.php

示例3: isset

            if (api_get_setting('allow_social_tool') == 'true') {
                if (!api_is_anonymous()) {
                    $query = isset($_GET['q']) ? $_GET['q'] : null;
                    $social_search .= UserManager::get_search_form($query);
                }
            }
            //$social_right_content .= SocialManager::display_user_list($user_list);
        }
    }
    $whoisonline_list .= SocialManager::display_user_list($user_list);
    if (isset($_GET['id'])) {
        if (api_get_setting('allow_social_tool') == 'true' && api_user_is_login()) {
            header("Location: " . api_get_path(WEB_CODE_PATH) . "social/profile.php?u=" . intval($_GET['id']));
            exit;
        } else {
            $social_right_content .= SocialManager::display_individual_user($_GET['id']);
        }
    }
} else {
    api_not_allowed();
    exit;
}
$tpl = new Template(get_lang('UsersOnLineList'));
if (api_get_setting('allow_social_tool') == 'true' && !api_is_anonymous()) {
    $tpl->assign('whoisonline', $whoisonline_list);
    $tpl->assign('social_search', $social_search);
    $social_layout = $tpl->get_template('social/whoisonline.tpl');
    $tpl->display($social_layout);
} else {
    $content = $social_right_content;
    $tpl->assign('actions', $actions);
開發者ID:KRCM13,項目名稱:chamilo-lms,代碼行數:31,代碼來源:whoisonline.php


注:本文中的SocialManager::display_individual_user方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。