当前位置: 首页>>代码示例>>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;未经允许,请勿转载。