本文整理匯總了PHP中SocialManager::get_user_feeds方法的典型用法代碼示例。如果您正苦於以下問題:PHP SocialManager::get_user_feeds方法的具體用法?PHP SocialManager::get_user_feeds怎麽用?PHP SocialManager::get_user_feeds使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類SocialManager
的用法示例。
在下文中一共展示了SocialManager::get_user_feeds方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: foreach
if (empty($value[2])) {
//if out of any session
$my_courses .= $value[1];
$i++;
}
}
$social_course_block .= $my_courses;
//$social_course_block = Display::panel($my_courses, get_lang('MyCourses'));
}
//Block Social Sessions
if (count($sessionList) > 0) {
//$social_session_block = $htmlSessionList;
$social_session_block = $sessionList;
}
// Block Social User Feeds
$user_feeds = SocialManager::get_user_feeds($user_id);
if (!empty($user_feeds)) {
$social_rss_block = Display::panel($user_feeds, get_lang('RSSFeeds'));
}
// Productions
$production_list = UserManager::build_production_list($user_id);
// Images uploaded by course
$file_list = '';
if (is_array($course_list_code) && count($course_list_code) > 0) {
foreach ($course_list_code as $course) {
$file_list .= UserManager::get_user_upload_files_by_course($user_id, $course['code'], $resourcetype = 'images');
}
}
$count_pending_invitations = 0;
if (!isset($_GET['u']) || isset($_GET['u']) && $_GET['u'] == api_get_user_id()) {
$pending_invitations = SocialManager::get_list_invitation_of_friends_by_user_id(api_get_user_id());