diff --git a/main/admin/user_list.php b/main/admin/user_list.php index 037bc6091e..6d427f5937 100755 --- a/main/admin/user_list.php +++ b/main/admin/user_list.php @@ -406,7 +406,7 @@ function get_user_data($from, $number_of_items, $column, $direction) while ($user = Database::fetch_row($res)) { $image_path = UserManager::get_user_picture_path_by_id($user[0], 'web', false, true); - $user_profile = UserManager::get_picture_user($user[0], $image_path['file'], 22, 'small_', ' width="22" height="22" '); + $user_profile = UserManager::get_picture_user($user[0], $image_path['file'], 22, USER_IMAGE_SIZE_SMALL, ' width="22" height="22" '); if (!api_is_anonymous()) { $photo = '
'.api_get_person_name($user[2],$user[3]).'
'; } else { @@ -757,7 +757,7 @@ else } $image_path = UserManager::get_user_picture_path_by_id($user_id, 'web', false, true); - $user_profile = UserManager::get_picture_user($user_id, $image_path['file'], 22, 'small_', ' width="22" height="22" '); + $user_profile = UserManager::get_picture_user($user_id, $image_path['file'], 22, USER_IMAGE_SIZE_SMALL, ' width="22" height="22" '); if (!api_is_anonymous()) { $photo = '
'.api_get_person_name($o_course_user['firstname'], $o_course_user['lastname']).'
'; } else { diff --git a/main/forum/forumfunction.inc.php b/main/forum/forumfunction.inc.php index 181cc29f36..82f2cd3654 100755 --- a/main/forum/forumfunction.inc.php +++ b/main/forum/forumfunction.inc.php @@ -2566,7 +2566,7 @@ function display_user_image($user_id,$name, $origin='') { $image_path = UserManager::get_user_picture_path_by_id($user_id,'web',false, true); $image_repository = $image_path['dir']; $existing_image = $image_path['file']; - $friends_profile = UserManager::get_picture_user($user_id, $image_path['file'], 0, 'medium_' , 'width="96" height="96" '); + $friends_profile = UserManager::get_picture_user($user_id, $image_path['file'], 0, USER_IMAGE_SIZE_MEDIUM , 'width="96" height="96" '); return $link.''.$name.''; } else { return $link.''.$name.''; diff --git a/main/inc/ajax/social.ajax.php b/main/inc/ajax/social.ajax.php index cf8f9414d6..b683e58dcf 100644 --- a/main/inc/ajax/social.ajax.php +++ b/main/inc/ajax/social.ajax.php @@ -138,7 +138,7 @@ switch ($action) { } echo $friend_html; break; - case 'delete_friend': + case 'delete_friend': if (api_is_anonymous()){ echo ''; @@ -162,86 +162,86 @@ switch ($action) { }*/ break; - case 'toogle_course': - - require_once api_get_path(LIBRARY_PATH).'blog.lib.php'; - require_once api_get_path(SYS_CODE_PATH).'forum/forumfunction.inc.php'; - require_once api_get_path(LIBRARY_PATH).'course.lib.php'; - - $user_id = intval($_SESSION['social_user_id']); - if ($_POST['action']) {$action = $_POST['action'];} - - switch($action) { - - case 'load_course' : - $course_db = $_POST['course_code']; - // @todo goto the course link - //echo ''.get_lang('GotoCourse').''; - $course_id=CourseManager::get_course_id_by_database_name($course_db); - - if (api_is_user_of_course($course_id,api_get_user_id())) { - - $table_forums = Database :: get_course_table(TABLE_FORUM,$course_db); - $table_threads = Database :: get_course_table(TABLE_FORUM_THREAD,$course_db); - $table_posts = Database :: get_course_table(TABLE_FORUM_POST,$course_db); - $table_item_property = Database :: get_course_table(TABLE_ITEM_PROPERTY,$course_db); - $table_users = Database :: get_main_table(TABLE_MAIN_USER); + case 'toogle_course': - //------Forum messages + require_once api_get_path(LIBRARY_PATH).'blog.lib.php'; + require_once api_get_path(SYS_CODE_PATH).'forum/forumfunction.inc.php'; + require_once api_get_path(LIBRARY_PATH).'course.lib.php'; - $forum_result = get_all_post_from_user($user_id, $course_db); - $all_result_data = 0; - if ($forum_result !='') { - api_display_tool_title(get_lang('Forum')); - echo '
'; - echo api_xml_http_response_encode($forum_result); - echo '
'; - echo '
'; - $all_result_data++; - } + $user_id = intval($_SESSION['social_user_id']); + if ($_POST['action']) {$action = $_POST['action'];} - //------Blog posts - $result = get_blog_post_from_user($course_db, $user_id); - if (!empty($result)) { - api_display_tool_title(api_xml_http_response_encode(get_lang('Blog'))); - echo '
'; - echo api_xml_http_response_encode($result); - echo '
'; - echo '
'; - $all_result_data++; - } - - //------Blog comments - $result = get_blog_comment_from_user($course_db, $user_id); - if (!empty($result)) { - echo '
'; - api_display_tool_title(api_xml_http_response_encode(get_lang('BlogComments'))); - echo api_xml_http_response_encode($result); - echo '
'; - echo '
'; - $all_result_data++; - } - if ($all_result_data == 0) { - echo api_xml_http_response_encode(get_lang('NoDataAvailable')); - } - - } else { - echo '

'; - api_display_tool_title(api_xml_http_response_encode(get_lang('Details'))); - echo '
'; - echo api_xml_http_response_encode(get_lang('UserNonRegisteredAtTheCourse')); - echo '

'; - echo '
'; - echo '

'; + switch($action) { + + case 'load_course' : + $course_db = $_POST['course_code']; + // @todo goto the course link + //echo ''.get_lang('GotoCourse').''; + $course_id=CourseManager::get_course_id_by_database_name($course_db); + + if (api_is_user_of_course($course_id,api_get_user_id())) { + + $table_forums = Database :: get_course_table(TABLE_FORUM,$course_db); + $table_threads = Database :: get_course_table(TABLE_FORUM_THREAD,$course_db); + $table_posts = Database :: get_course_table(TABLE_FORUM_POST,$course_db); + $table_item_property = Database :: get_course_table(TABLE_ITEM_PROPERTY,$course_db); + $table_users = Database :: get_main_table(TABLE_MAIN_USER); + + //------Forum messages + + $forum_result = get_all_post_from_user($user_id, $course_db); + $all_result_data = 0; + if ($forum_result !='') { + api_display_tool_title(get_lang('Forum')); + echo '
'; + echo api_xml_http_response_encode($forum_result); + echo '
'; + echo '
'; + $all_result_data++; } - break; - case 'unload_course' : - //echo 'load2'; - break; - default: - break; - } - break; + + //------Blog posts + $result = get_blog_post_from_user($course_db, $user_id); + if (!empty($result)) { + api_display_tool_title(api_xml_http_response_encode(get_lang('Blog'))); + echo '
'; + echo api_xml_http_response_encode($result); + echo '
'; + echo '
'; + $all_result_data++; + } + + //------Blog comments + $result = get_blog_comment_from_user($course_db, $user_id); + if (!empty($result)) { + echo '
'; + api_display_tool_title(api_xml_http_response_encode(get_lang('BlogComments'))); + echo api_xml_http_response_encode($result); + echo '
'; + echo '
'; + $all_result_data++; + } + if ($all_result_data == 0) { + echo api_xml_http_response_encode(get_lang('NoDataAvailable')); + } + + } else { + echo '

'; + api_display_tool_title(api_xml_http_response_encode(get_lang('Details'))); + echo '
'; + echo api_xml_http_response_encode(get_lang('UserNonRegisteredAtTheCourse')); + echo '

'; + echo '
'; + echo '

'; + } + break; + case 'unload_course' : + //echo 'load2'; + break; + default: + break; + } + break; default: echo ''; } diff --git a/main/inc/lib/group_portal_manager.lib.php b/main/inc/lib/group_portal_manager.lib.php index e6aef0562f..3ba5685a6e 100755 --- a/main/inc/lib/group_portal_manager.lib.php +++ b/main/inc/lib/group_portal_manager.lib.php @@ -288,7 +288,7 @@ class GroupPortalManager /** * Gets the group's members */ - public static function get_users_by_group($group_id, $with_image = false, $relation_type = array(), $from = 0, $limit = 15, $image_conf = array('size'=>'medium_','height'=>80)) + public static function get_users_by_group($group_id, $with_image = false, $relation_type = array(), $from = 0, $limit = 15, $image_conf = array('size'=>USER_IMAGE_SIZE_MEDIUM,'height'=>80)) { $where = ''; $table_group_rel_user = Database::get_main_table(TABLE_MAIN_USER_REL_GROUP); @@ -328,7 +328,7 @@ class GroupPortalManager $array = array(); while ($row = Database::fetch_array($result, 'ASSOC')) { $image_path = UserManager::get_user_picture_path_by_id($row['user_id'], 'web', false, true); - $user_profile = UserManager::get_picture_user($row['user_id'], $image_path['file'], 60, 'medium_'); + $user_profile = UserManager::get_picture_user($row['user_id'], $image_path['file'], 60, USER_IMAGE_SIZE_MEDIUM); if ($with_image == true) { $picture = UserManager::get_picture_user($row['user_id'], $row['picture_uri'],$image_conf['height'],$image_conf['size']); $row['image'] = ''; diff --git a/main/inc/lib/message.lib.php b/main/inc/lib/message.lib.php index d9eb141376..3c3b0047a5 100755 --- a/main/inc/lib/message.lib.php +++ b/main/inc/lib/message.lib.php @@ -22,9 +22,9 @@ require_once api_get_path(LIBRARY_PATH).'group_portal_manager.lib.php'; */ define('MESSAGE_STATUS_NEW', '0'); define('MESSAGE_STATUS_UNREAD', '1'); +//2 ?? define('MESSAGE_STATUS_DELETED', '3'); define('MESSAGE_STATUS_OUTBOX', '4'); - define('MESSAGE_STATUS_INVITATION_PENDING', '5'); define('MESSAGE_STATUS_INVITATION_ACCEPTED','6'); define('MESSAGE_STATUS_INVITATION_DENIED', '7'); @@ -85,7 +85,7 @@ class MessageManager return false; } $i=0; - $query = "SELECT * FROM $table_message WHERE user_receiver_id=".api_get_user_id()." AND msg_status=1"; + $query = "SELECT * FROM $table_message WHERE user_receiver_id=".api_get_user_id()." AND msg_status=".MESSAGE_STATUS_UNREAD; $result = Database::query($query,__FILE__,__LINE__); $i = Database::num_rows($result); return $i; @@ -314,6 +314,7 @@ class MessageManager public static function delete_message_by_user_receiver ($user_receiver_id,$id) { $table_message = Database::get_main_table(TABLE_MESSAGE); if ($id != strval(intval($id))) return false; + $user_receiver_id = intval($user_receiver_id); $id = Database::escape_string($id); $sql="SELECT * FROM $table_message WHERE id=".$id." AND msg_status<>4;"; $rs=Database::query($sql,__FILE__,__LINE__); @@ -323,7 +324,7 @@ class MessageManager // delete attachment file $res = self::delete_message_attachment_file($id,$user_receiver_id); // delete message - $query = "UPDATE $table_message SET msg_status=3 WHERE user_receiver_id=".Database::escape_string($user_receiver_id)." AND id=".$id; + $query = "UPDATE $table_message SET msg_status=3 WHERE user_receiver_id=".$user_receiver_id." AND id=".$id; //$query = "DELETE FROM $table_message WHERE user_receiver_id=".Database::escape_string($user_receiver_id)." AND id=".$id; $result = Database::query($query,__FILE__,__LINE__); return $result; @@ -362,7 +363,7 @@ class MessageManager } /** - * save message attachment files + * Saves a message attachment files * @param array $_FILES['name'] * @param string a comment about the uploaded file * @param int message id @@ -496,7 +497,7 @@ class MessageManager $table_message = Database::get_main_table(TABLE_MESSAGE); $current_uid = api_get_user_id(); $group_id = intval($group_id); - $query = "SELECT * FROM $table_message WHERE group_id='$group_id' AND msg_status <> 4 ORDER BY id"; + $query = "SELECT * FROM $table_message WHERE group_id=$group_id AND msg_status <> ".MESSAGE_STATUS_OUTBOX." ORDER BY id"; $rs = Database::query($query,__FILE__,__LINE__); $data = array(); if (Database::num_rows($rs) > 0) { @@ -533,7 +534,7 @@ class MessageManager $condition_limit = " LIMIT $offset,$limit "; } - $query = "SELECT * FROM $table_message WHERE parent_id='$parent_id' AND msg_status <> 4 $condition_group_id ORDER BY send_date DESC $condition_limit "; + $query = "SELECT * FROM $table_message WHERE parent_id='$parent_id' AND msg_status <> ".MESSAGE_STATUS_OUTBOX." $condition_group_id ORDER BY send_date DESC $condition_limit "; $rs = Database::query($query,__FILE__,__LINE__); $data = array(); if (Database::num_rows($rs) > 0) { @@ -582,7 +583,7 @@ class MessageManager $table_message = Database::get_main_table(TABLE_MESSAGE); $request=api_is_xml_http_request(); $sql_query = "SELECT id as col0, user_sender_id as col1, title as col2, send_date as col3, user_receiver_id as col4, msg_status as col5 FROM $table_message " . - "WHERE user_sender_id=".api_get_user_id()." AND msg_status=4 " . + "WHERE user_sender_id=".api_get_user_id()." AND msg_status=".MESSAGE_STATUS_OUTBOX." " . "ORDER BY col$column $direction LIMIT $from,$number_of_items"; $sql_result = Database::query($sql_query,__FILE__,__LINE__); @@ -632,7 +633,7 @@ class MessageManager */ public static function get_number_of_messages_sent () { $table_message = Database::get_main_table(TABLE_MESSAGE); - $sql_query = "SELECT COUNT(*) as number_messages FROM $table_message WHERE msg_status=4 AND user_sender_id=".api_get_user_id(); + $sql_query = "SELECT COUNT(*) as number_messages FROM $table_message WHERE msg_status=".MESSAGE_STATUS_OUTBOX." AND user_sender_id=".api_get_user_id(); $sql_result = Database::query($sql_query,__FILE__,__LINE__); $result = Database::fetch_array($sql_result); return $result['number_messages']; diff --git a/main/inc/lib/social.lib.php b/main/inc/lib/social.lib.php index af393c4356..e4aa8cc7f5 100755 --- a/main/inc/lib/social.lib.php +++ b/main/inc/lib/social.lib.php @@ -750,7 +750,7 @@ class SocialManager extends UserManager { } $image_array = UserManager::get_user_picture_path_by_id($uid, 'system', false, true); - $friends_profile = SocialManager::get_picture_user($uid, $image_array['file'], 92, 'medium_', ' width="90" height="90" '); + $friends_profile = SocialManager::get_picture_user($uid, $image_array['file'], 92, USER_IMAGE_SIZE_MEDIUM , ' width="90" height="90" '); // reduce image $name = api_get_person_name($user_info['firstName'], $user_info['lastName']); $table_row[] = ''.$name.''; diff --git a/main/inc/lib/usermanager.lib.php b/main/inc/lib/usermanager.lib.php index e86c95cc07..b4bcaff954 100644 --- a/main/inc/lib/usermanager.lib.php +++ b/main/inc/lib/usermanager.lib.php @@ -22,6 +22,14 @@ define('USER_FIELD_TYPE_DOUBLE_SELECT', 8); define('USER_FIELD_TYPE_DIVIDER', 9); define('USER_FIELD_TYPE_TAG', 10); +//User image sizes + +define('USER_IMAGE_SIZE_ORIGINAL', 1); +define('USER_IMAGE_SIZE_BIG', 2); +define('USER_IMAGE_SIZE_MEDIUM', 3); +define('USER_IMAGE_SIZE_SMALL', 4); + + class UserManager { private function __construct () { @@ -2191,7 +2199,7 @@ class UserManager * @param string style css * @return array with the file and the style of an image i.e $array['file'] $array['style'] */ - public static function get_picture_user($user_id, $picture_file, $height, $size_picture = 'medium_', $style = '') { + public static function get_picture_user($user_id, $picture_file, $height, $size_picture = USER_IMAGE_SIZE_MEDIUM , $style = '') { $patch_profile = 'upload/users/'; $picture = array(); @@ -2200,6 +2208,24 @@ class UserManager $picture['file'] = api_get_path(WEB_CODE_PATH).'img/'.$picture_file; return $picture; } + + switch ($size_picture) { + case USER_IMAGE_SIZE_ORIGINAL : + $size_picture = ''; + break; + case USER_IMAGE_SIZE_BIG : + $size_picture = 'big_'; + break; + case USER_IMAGE_SIZE_MEDIUM : + $size_picture = 'medium_'; + break; + case USER_IMAGE_SIZE_SMALL : + $size_picture = 'small_'; + break; + default: + $size_picture = 'medium_'; + } + $image_array_sys = self::get_user_picture_path_by_id($user_id, 'system', false, true); $image_array = self::get_user_picture_path_by_id($user_id, 'web', false, true); $file = $image_array_sys['dir'].$size_picture.$picture_file; diff --git a/main/social/home.php b/main/social/home.php index ecbd893524..060dd32d49 100755 --- a/main/social/home.php +++ b/main/social/home.php @@ -25,8 +25,8 @@ $htmlHeadXtra[] = '