You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
299 lines
9.4 KiB
299 lines
9.4 KiB
<?php
|
|
/* For licensing terms, see /chamilo_license.txt */
|
|
/**
|
|
* @package chamilo.social
|
|
* @author Julio Montoya <gugli100@gmail.com>
|
|
*/
|
|
/**
|
|
* Initialization
|
|
*/
|
|
$language_file = array('userInfo');
|
|
$cidReset = true;
|
|
|
|
require_once '../inc/global.inc.php';
|
|
require_once api_get_path(LIBRARY_PATH) . 'group_portal_manager.lib.php';
|
|
require_once api_get_path(LIBRARY_PATH) . 'skill.lib.php';
|
|
|
|
$user_id = api_get_user_id();
|
|
$show_full_profile = true;
|
|
//social tab
|
|
$this_section = SECTION_SOCIAL;
|
|
unset($_SESSION['this_section']); //for hmtl editor repository
|
|
|
|
api_block_anonymous_users();
|
|
|
|
if (api_get_setting('allow_social_tool') != 'true') {
|
|
$url = api_get_path(WEB_CODE_PATH) . 'auth/profile.php';
|
|
header('Location: ' . $url);
|
|
exit;
|
|
api_not_allowed();
|
|
}
|
|
|
|
//fast upload image
|
|
if (api_get_setting('profile', 'picture') == 'true') {
|
|
$form = new FormValidator('profile', 'post', 'home.php', null, array());
|
|
|
|
// PICTURE
|
|
$form->addElement('file', 'picture', get_lang('AddImage'));
|
|
$form->add_progress_bar();
|
|
if (!empty($user_data['picture_uri'])) {
|
|
$form->addElement(
|
|
'checkbox',
|
|
'remove_picture',
|
|
null,
|
|
get_lang('DelImage')
|
|
);
|
|
}
|
|
$allowed_picture_types = api_get_supported_image_extensions();
|
|
$form->addRule(
|
|
'picture',
|
|
get_lang('OnlyImagesAllowed') . ' (' . implode(
|
|
',',
|
|
$allowed_picture_types
|
|
) . ')',
|
|
'filetype',
|
|
$allowed_picture_types
|
|
);
|
|
$form->addElement(
|
|
'style_submit_button',
|
|
'apply_change',
|
|
get_lang('SaveSettings'),
|
|
'class="save"'
|
|
);
|
|
|
|
if ($form->validate()) {
|
|
$user_data = $form->getSubmitValues();
|
|
// upload picture if a new one is provided
|
|
if ($_FILES['picture']['size']) {
|
|
if ($new_picture = UserManager::update_user_picture(
|
|
api_get_user_id(),
|
|
$_FILES['picture']['name'],
|
|
$_FILES['picture']['tmp_name']
|
|
)
|
|
) {
|
|
$table_user = Database :: get_main_table(TABLE_MAIN_USER);
|
|
|
|
$sql = "UPDATE $table_user
|
|
SET picture_uri = '$new_picture' WHERE user_id = " . api_get_user_id();
|
|
|
|
$result = Database::query($sql);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
$user_info = UserManager :: get_user_info_by_id(api_get_user_id());
|
|
|
|
$social_avatar_block = SocialManager::show_social_avatar_block('home');
|
|
$social_menu_block = SocialManager::show_social_menu('home');
|
|
|
|
$socialRightContent = '<div class="span5">';
|
|
$socialRightContent .= '<div class="well_border">';
|
|
$socialRightContent .= '<h3>' . get_lang('ContactInformation') . '</h3>';
|
|
|
|
$list = array(
|
|
array(
|
|
'title' => get_lang('Name'),
|
|
'content' => api_get_person_name(
|
|
$user_info['firstname'],
|
|
$user_info['lastname']
|
|
)
|
|
),
|
|
array('title' => get_lang('Email'), 'content' => $user_info['email']),
|
|
);
|
|
// information current user
|
|
$socialRightContent .= '<div>' . Display::description($list) . '</div>';
|
|
|
|
$editProfileUrl = api_get_path(WEB_CODE_PATH) . 'auth/profile.php';
|
|
|
|
if (api_get_setting('sso_authentication') === 'true') {
|
|
$subSSOClass = api_get_setting('sso_authentication_subclass');
|
|
$objSSO = null;
|
|
|
|
if (!empty($subSSOClass)) {
|
|
require_once api_get_path(SYS_CODE_PATH) . 'auth/sso/sso.' . $subSSOClass . '.class.php';
|
|
|
|
$subSSOClass = 'sso' . $subSSOClass;
|
|
$objSSO = new $subSSOClass();
|
|
} else {
|
|
$objSSO = new sso();
|
|
}
|
|
|
|
$editProfileUrl = $objSSO->generateProfileEditingURL();
|
|
}
|
|
|
|
$socialRightContent .= '
|
|
<div class="form-actions">
|
|
<a class="btn" href="' . $editProfileUrl . '">
|
|
' . get_lang('EditProfile') . '
|
|
</a>
|
|
</div></div></div>';
|
|
$socialRightInformation = '<div class="span4">';
|
|
if (api_get_setting('allow_skills_tool') == 'true') {
|
|
$socialRightInformation .= '<div class="well_border">';
|
|
$skill = new Skill();
|
|
$ranking = $skill->get_user_skill_ranking(api_get_user_id());
|
|
$url = api_get_path(WEB_CODE_PATH) . 'social/skills_ranking.php';
|
|
$ranking_url = Display::url(
|
|
sprintf(get_lang('YourSkillRankingX'), $ranking),
|
|
$url,
|
|
array('class' => 'btn')
|
|
);
|
|
|
|
$skills = $skill->get_user_skills(api_get_user_id(), true);
|
|
|
|
$socialRightInformation .= '<h3>' . get_lang('Skills') . '</h3>';
|
|
$lis = '';
|
|
if (!empty($skills)) {
|
|
foreach ($skills as $skill) {
|
|
$lis .= Display::tag(
|
|
'li',
|
|
Display::span(
|
|
$skill['name'],
|
|
array('class' => 'label_tag skill')
|
|
)
|
|
);
|
|
}
|
|
$socialRightInformation .= Display::tag('ul', $lis);
|
|
}
|
|
$url = api_get_path(WEB_CODE_PATH) . 'social/skills_wheel.php';
|
|
$skill_wheel_url = Display::url(
|
|
get_lang('ViewSkillsWheel'),
|
|
$url,
|
|
array('class' => 'btn')
|
|
);
|
|
$socialRightInformation .= '<div class="btn-group">' . $skill_wheel_url . $ranking_url . '</div>';
|
|
$socialRightInformation .= '</div>';
|
|
}
|
|
|
|
|
|
//Search box
|
|
$socialRightInformation .= '<div>';
|
|
$socialRightInformation .= UserManager::get_search_form('');
|
|
$socialRightInformation .= '<br /></div>';
|
|
|
|
//Group box by age
|
|
$results = GroupPortalManager::get_groups_by_age(1, false);
|
|
|
|
$groups_newest = array();
|
|
if (!empty($results)) {
|
|
foreach ($results as $result) {
|
|
$id = $result['id'];
|
|
$result['description'] = Security::remove_XSS(
|
|
$result['description'],
|
|
STUDENT,
|
|
true
|
|
);
|
|
$result['name'] = Security::remove_XSS($result['name'], STUDENT, true);
|
|
if ($result['count'] == 1) {
|
|
$result['count'] = '1 ' . get_lang('Member');
|
|
} else {
|
|
$result['count'] = $result['count'] . ' ' . get_lang('Members');
|
|
}
|
|
$group_url = "groups.php?id=$id";
|
|
$result['name'] = Display::url(
|
|
api_ucwords(cut($result['name'], 40, true)),
|
|
$group_url
|
|
) . Display::span(
|
|
'<br />' . $result['count'],
|
|
array('class' => 'box_description_group_member')
|
|
);
|
|
$picture = GroupPortalManager::get_picture_group(
|
|
$id,
|
|
$result['picture_uri'],
|
|
80
|
|
);
|
|
$result['picture_uri'] = '<img class="social-groups-image" src="' . $picture['file'] . '" hspace="10" height="44" border="2" align="left" width="44" />';
|
|
$group_actions = '<div class="box_description_group_actions"><a href="groups.php?#tab_browse-2">' . get_lang(
|
|
'SeeMore'
|
|
) . '</a></div>';
|
|
$groups_newest[] = array(
|
|
Display::url(
|
|
$result['picture_uri'],
|
|
$group_url
|
|
),
|
|
$result['name'],
|
|
cut($result['description'], 120, true) . $group_actions
|
|
);
|
|
}
|
|
}
|
|
|
|
$results = GroupPortalManager::get_groups_by_popularity(1, false);
|
|
|
|
$groups_pop = array();
|
|
foreach ($results as $result) {
|
|
$result['description'] = Security::remove_XSS(
|
|
$result['description'],
|
|
STUDENT,
|
|
true
|
|
);
|
|
$result['name'] = Security::remove_XSS($result['name'], STUDENT, true);
|
|
$id = $result['id'];
|
|
$group_url = "groups.php?id=$id";
|
|
|
|
if ($result['count'] == 1) {
|
|
$result['count'] = '1 ' . get_lang('Member');
|
|
} else {
|
|
$result['count'] = $result['count'] . ' ' . get_lang('Members');
|
|
}
|
|
$result['name'] = Display::url(
|
|
api_ucwords(cut($result['name'], 40, true)),
|
|
$group_url
|
|
) . Display::span(
|
|
'<br />' . $result['count'],
|
|
array('class' => 'box_description_group_member')
|
|
);
|
|
$picture = GroupPortalManager::get_picture_group(
|
|
$id,
|
|
$result['picture_uri'],
|
|
80
|
|
);
|
|
$result['picture_uri'] = '<img class="social-groups-image" src="' . $picture['file'] . '" hspace="10" height="44" border="2" align="left" width="44" />';
|
|
$group_actions = '<div class="box_description_group_actions" ><a href="groups.php?#tab_browse-3">' . get_lang(
|
|
'SeeMore'
|
|
) . '</a></div>';
|
|
$groups_pop[] = array(
|
|
Display::url($result['picture_uri'], $group_url),
|
|
$result['name'],
|
|
cut($result['description'], 120, true) . $group_actions
|
|
);
|
|
}
|
|
|
|
if (count($groups_newest) > 0) {
|
|
$socialRightInformation .= '<div class="social-groups-home-title">' . get_lang(
|
|
'Newest'
|
|
) . '</div>';
|
|
$socialRightInformation .= Display::return_sortable_grid(
|
|
'home_group',
|
|
array(),
|
|
$groups_newest,
|
|
array('hide_navigation' => true, 'per_page' => 100),
|
|
array(),
|
|
false,
|
|
array(true, true, true, false)
|
|
);
|
|
}
|
|
|
|
if (count($groups_pop) > 0) {
|
|
$socialRightInformation .= '<div class="social-groups-home-title">' . get_lang(
|
|
'Popular'
|
|
) . '</div>';
|
|
$socialRightInformation .= Display::return_sortable_grid(
|
|
'home_group',
|
|
array(),
|
|
$groups_pop,
|
|
array('hide_navigation' => true, 'per_page' => 100),
|
|
array(),
|
|
false,
|
|
array(true, true, true, true, true)
|
|
);
|
|
}
|
|
$socialRightInformation .= '</div>';
|
|
|
|
$tpl = new Template(get_lang('SocialNetwork'));
|
|
$tpl->assign('social_avatar_block', $social_avatar_block);
|
|
$tpl->assign('social_menu_block', $social_menu_block);
|
|
$tpl->assign('social_right_content', $socialRightContent);
|
|
$tpl->assign('socialRightInformation', $socialRightInformation);
|
|
$social_layout = $tpl->get_template('layout/social_layout.tpl');
|
|
$tpl->display($social_layout); |