123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113 |
- <?php
- /* For licensing terms, see /chamilo_license.txt */
- /**
- * @package dokeos.messages
- */
- $language_file = array('registration','messages','userInfo');
- $cidReset= true;
- require_once '../inc/global.inc.php';
- api_block_anonymous_users();
- if (api_get_setting('allow_message_tool')!='true'){
- api_not_allowed();
- }
- require_once api_get_path(LIBRARY_PATH).'message.lib.php';
- /*
- ==============================================================================
- HEADER
- ==============================================================================
- */
- if ($_REQUEST['f']=='social') {
- $this_section = SECTION_SOCIAL;
- $interbreadcrumb[]= array ('url' => api_get_path(WEB_PATH).'main/social/profile.php','name' => get_lang('Social'));
- $interbreadcrumb[]= array ('url' => 'inbox.php?f=social','name' => get_lang('Inbox'));
- } else {
- $this_section = SECTION_MYPROFILE;
- $interbreadcrumb[]= array ('url' => '#','name' => get_lang('Profile'));
- $interbreadcrumb[]= array ('url' => 'inbox.php','name' => get_lang('Inbox'));
- }
- $interbreadcrumb[]= array ('url' => '#','name' => get_lang('View'));
- Display::display_header('');
- if ($_GET['f']=='social') {
- $user_online_list = WhoIsOnline(api_get_setting('time_limit_whosonline'),true);
- $user_online_count = count($user_online_list);
- echo '<div class="social-header">';
- echo '<table width="100%"><tr><td width="150px" bgcolor="#32578b"><center><span class="social-menu-text1">'.strtoupper(get_lang('Menu')).'</span></center></td>
- <td width="15px"> </td><td bgcolor="#32578b">'.Display::return_icon('whoisonline.png','',array('hspace'=>'6')).'<a href="#" ><span class="social-menu-text1">'.get_lang('FriendsOnline').' '.$user_online_count.'</span></a></td>
- </tr></table>';
- /*
- echo '<div class="social-menu-title" align="center"><span class="social-menu-text1">'.get_lang('Menu').'</span></div>';
- echo '<div class="social-menu-title-right">'.Display::return_icon('whoisonline.png','',array('hspace'=>'6')).'<a href="#" ><span class="social-menu-text1">'.$who_is_on_line.'</span></a></div>';
- */
- echo '</div>';
- $social_parameter = '?f=social';
- } else {
- if (api_get_setting('extended_profile') == 'true') {
- echo '<div class="actions">';
-
- if (api_get_setting('allow_social_tool') == 'true' && api_get_setting('allow_message_tool') == 'true') {
- echo '<a href="'.api_get_path(WEB_PATH).'main/social/profile.php">'.Display::return_icon('shared_profile.png', get_lang('ViewSharedProfile')).' '.get_lang('ViewSharedProfile').'</a>';
- }
- if (api_get_setting('allow_message_tool') == 'true') {
- echo '<a href="'.api_get_path(WEB_PATH).'main/messages/inbox.php">'.Display::return_icon('inbox.png').' '.get_lang('Messages').'</a>';
- }
- echo '<a href="'.api_get_path(WEB_PATH).'main/auth/profile.php?type=reduced">'.Display::return_icon('edit.gif', get_lang('EditNormalProfile')).' '.get_lang('EditNormalProfile').'</a>';
-
- echo '</div>';
- }
- }
- echo '<div id="social-content">';
- if (empty($_GET['id'])) {
- $id_message = $_GET['id_send'];
- $source = 'outbox';
- $show_menu = 'messages_outbox';
- } else {
- $id_message = $_GET['id'];
- $source = 'inbox';
- $show_menu = 'messages_inbox';
- }
- $id_content_right = '';
- //LEFT COLUMN
- if (api_get_setting('allow_social_tool') != 'true') {
- $id_content_right = 'inbox';
- echo '<div id="inbox-menu" class="actions">';
- echo '<ul>';
- echo '<li><a href="'.api_get_path(WEB_PATH).'main/messages/inbox.php">'.Display::return_icon('inbox.png',get_lang('Inbox')).get_lang('Inbox').'</a>'.'</li>';
- echo '<li><a href="'.api_get_path(WEB_PATH).'main/messages/new_message.php">'.Display::return_icon('message_new.png',get_lang('ComposeMessage')).get_lang('ComposeMessage').'</a>'.'</li>';
- echo '<li><a href="'.api_get_path(WEB_PATH).'main/messages/outbox.php">'.Display::return_icon('outbox.png',get_lang('Outbox')).get_lang('Outbox').'</a>'.'</li>';
- echo '</ul>';
- echo '</div>';
- } else {
- require_once api_get_path(LIBRARY_PATH).'social.lib.php';
- $id_content_right = 'social-content-right';
- echo '<div id="social-content-left">';
- //this include the social menu div
-
- SocialManager::show_social_menu($show_menu);
- echo '</div>';
- }
- echo '<div id="'.$id_content_right.'">';
- //MAIN CONTENT
- $message = MessageManager::show_message_box($id_message,$source);
- if (!empty($message)) {
- echo $message;
- } else {
- api_not_allowed();
- }
- echo '</div>';
- echo '</div>';
- /*
- ==============================================================================
- FOOTER
- ==============================================================================
- */
- Display::display_footer();
- ?>
|