0) { $feed_uid = "286"; } $blks = mysqli_query($conx, "SELECT blocked_uid FROM blocking WHERE blocked_uid='$u_uid' && uid='$feed_uid'"); $blkc = mysqli_num_rows($blks); if($blkc > 0) { $feed_uid = "286"; } // ************************ // // *** BLOCKING SYSTEM *** // // ************************ // // Emoji+ replacement include("../inc/replace.php"); # SELECT ACCOUNT DATA FOR FEED POSTS $usr_q = mysqli_query($conx, "SELECT username,picture,online_time,md_verf FROM accounts WHERE uid='$feed_uid'"); while($usr_r = mysqli_fetch_assoc($usr_q)) { // Account data $feed_username = $usr_r['username']; $feed_picture = $usr_r['picture']; $feed_onltime = $usr_r['online_time']; $feed_vrf = $usr_r['md_verf']; if($feed_vrf == 'yes') { $verif_check = ""; } else { $verif_check = ""; } // // DATA SAVER if($u_datasaver == 'on') { $feed_picture = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAAPCAYAAAA71pVKAAABtklEQVR4AW1TNXgUYRC9HqdvoYW+PT/c3Z0KWvqWLp7drCvuDg3uVNEGh3hyro8ZLGuz31v7n/waW33i9H/oq7SlxmrjCOGBudocI5T5yd/8n9u9fI9QX0GEG0SuEPAbq/j5F/yf2pnnE9OPldT4gQAvzu88D3ON/x/zmP9brP3p6nUvwcgZuHLsCj49/4RrJ67xt8+A+ayL0cvRYFftjRZG7o+Aa+TBCMwNofQK61h83+e6ysCLzhdo1Brg4uejs4+gZJRg+v0YvYx6u3vz1E0Uxgrw1sTnCej7dch+g1EWlzxuGLg5gKh67bxGZ6ITSlb9Jy7PJfNYt9oYGx5DVH0f+I7edQJ6UwLUnMpBo3NjJrG11cLo8Gi0ePA7hPUihJQIKSuzwV3fbNP045X5Ci26gvXMeIbuZA+kjAwlpxTVVco+3zrzTGtbNby79g6lfAnNZhPF2SJeX3mN3o29ENN9LIS6SnWVVfLC0A5jA2mNBOOkAeeMC+mIjPZ0B3cXclYGJT4hLPfvbTbw7G0tq0FIiuhO9HAij7NIqSYJl3n3ttcgdKpoYsb6MtIdKSvtknPSfC//FxxTQV29mEp6AAAAAElFTkSuQmCC"; } // DATA SAVER // // Activity Dot $new_time = time() - $feed_onltime; $mens = round($new_time / 60); if($mens <= 1) { $cv_activeness = "#00FF00"; } // Active within one minute elseif($mens <= 2) { $cv_activeness = "#FFA500"; } // Active within two minutes elseif($mens < 5) { $cv_activeness = "#FF0000"; } // Active within five minutes else { $cv_activeness = "#FF0000"; } // Active over five minutes # SELECT THEME COLORS FOR ACCOUNTS $usri_q = mysqli_query($conx, "SELECT username_color,text_color FROM user_theme_colors WHERE uid='$feed_uid' && theme_id='$g_themeid'"); while($usri_r = mysqli_fetch_assoc($usri_q)) { // Theme data $username_color = $usri_r['username_color']; $feed_tcolor = $usri_r['text_color']; } // Styling for the comment placeholders of each account attached to a post. echo ""; } // If a post has more than one comment, set an 's' variable $comcnt_q = mysqli_query($conx, "SELECT id FROM feed_comments WHERE post_id='$feed_id'"); $comcnt_r = number_format(mysqli_num_rows($comcnt_q)); if($comcnt_r == '1') { $cs = ""; } else { $cs = "s"; } // comment(s) // If a post has more than one like, set an 's' variable $likcnt_q = mysqli_query($conx, "SELECT id FROM feed_likes WHERE post_id='$feed_id'"); $likcnt_r = number_format(mysqli_num_rows($likcnt_q)); if($likcnt_r == '1') { $ls = ""; } else { $ls = "s"; } // like(s) // If a post has more than one dislike, set an 's' variable $dlikcnt_q = mysqli_query($conx, "SELECT id FROM feed_dislikes WHERE post_id='$feed_id'"); $dlikcnt_r = number_format(mysqli_num_rows($dlikcnt_q)); if($dlikcnt_r == '1') { $dls = ""; } else { $dls = "s"; } // dislike(s) # BEGIN ECHOING THE FEED POSTS if($feed_uid != '286') { echo "
"; echo ""; echo ""; echo ""; echo "
"; echo "
"; echo "
"; echo "
"; echo "$feed_username $verif_check"; echo "
"; echo "
"; // State whether or not a post has been edited. if($feed_edited == 'yes') { echo "edited "; } else { echo "posted "; } // State the timestamp of the post. echo timeago($feed_tstamp); echo" ago"; // If the feed UID matches the current UID. if($feed_uid == $u_uid) { // Option to edit the post. echo "    "; // Option to remove the post. echo ""; } // If the feed UID does not match the current UID, but the current account is a content manager. ########## YOU WILL NEED TO MODIFY THIS CODE TO MATCH CANVAS STANDARDS FOR ROLES ########## if($feed_uid != $u_uid && $u_cont_mang == 'yes') { echo "  "; } echo "  "; ########## YOU WILL NEED TO MODIFY THIS CODE TO MATCH CANVAS STANDARDS FOR ROLES ########## echo "
"; echo "
"; // Echo the post content. echo bbc(atname(nl2br($string))); if($feed_is_poll == 'yes') { echo "
"; // Added Feed polls. 2021 // Added Feed polls. 2021 // Added Feed polls. 2021 // Added Feed polls. 2021 # SELECT POLL DATA FOR THE POST $fpoll_q = mysqli_query($conx, "SELECT * FROM feed_polls WHERE uqid='$feed_randomstr'"); while($fpoll_r = mysqli_fetch_assoc($fpoll_q)) { // poll data $fpoll_question = $fpoll_r['poll_question']; $fpoll_opt1 = $fpoll_r['poll_opt1']; $fpoll_opt2 = $fpoll_r['poll_opt2']; $fpoll_opt3 = $fpoll_r['poll_opt3']; $fpoll_opt4 = $fpoll_r['poll_opt4']; $fpoll_opt5 = $fpoll_r['poll_opt5']; $fpoll_istimed = $fpoll_r['is_timed']; $fpoll_tstmpend = $fpoll_r['tstamp_end']; if(strlen($fpoll_opt1) >= 30) { $fpoll_optc1 = trim(substr($fpoll_opt1,0,30)) . "..."; } else { $fpoll_optc1 = $fpoll_opt1; } if(strlen($fpoll_opt2) >= 30) { $fpoll_optc2 = trim(substr($fpoll_opt2,0,30)) . "..."; } else { $fpoll_optc2 = $fpoll_opt2; } if(strlen($fpoll_opt3) >= 30) { $fpoll_optc3 = trim(substr($fpoll_opt3,0,30)) . "..."; } else { $fpoll_optc3 = $fpoll_opt3; } if(strlen($fpoll_opt4) >= 30) { $fpoll_optc4 = trim(substr($fpoll_opt4,0,30)) . "..."; } else { $fpoll_optc4 = $fpoll_opt4; } if(strlen($fpoll_opt5) >= 30) { $fpoll_optc5 = trim(substr($fpoll_opt5,0,30)) . "..."; } else { $fpoll_optc5 = $fpoll_opt5; } } # SELECT RESPONSE DATA FOR THE POLL $fpoll_response_q = mysqli_query($conx, "SELECT * FROM feed_poll_response WHERE poll_uqid='$feed_randomstr' && uid='$u_uid'"); while($fpoll_response_r = mysqli_fetch_assoc($fpoll_response_q)) { // poll response data $fpoll_option_picked = $fpoll_response_r['option_picked']; } echo "
"; if($fpoll_option_picked != '') { $current_can_vote = "no"; } else { $current_can_vote = "yes"; } // total vote count $rest_c = mysqli_query($conx, "SELECT uid FROM feed_poll_response WHERE poll_uqid='$feed_randomstr'"); $optt_cnt = mysqli_num_rows($rest_c); // count number of votes for each option $res_c1 = mysqli_query($conx, "SELECT uid FROM feed_poll_response WHERE poll_uqid='$feed_randomstr' && option_picked='1'"); $opt1_cnt = mysqli_num_rows($res_c1); if($opt1_cnt != '1') { $count1_s = "s"; } $res_c2 = mysqli_query($conx, "SELECT uid FROM feed_poll_response WHERE poll_uqid='$feed_randomstr' && option_picked='2'"); $opt2_cnt = mysqli_num_rows($res_c2); if($opt2_cnt != '1') { $count2_s = "s"; } $res_c3 = mysqli_query($conx, "SELECT uid FROM feed_poll_response WHERE poll_uqid='$feed_randomstr' && option_picked='3'"); $opt3_cnt = mysqli_num_rows($res_c3); if($opt3_cnt != '1') { $count3_s = "s"; } $res_c4 = mysqli_query($conx, "SELECT uid FROM feed_poll_response WHERE poll_uqid='$feed_randomstr' && option_picked='4'"); $opt4_cnt = mysqli_num_rows($res_c4); if($opt4_cnt != '1') { $count4_s = "s"; } $res_c5 = mysqli_query($conx, "SELECT uid FROM feed_poll_response WHERE poll_uqid='$feed_randomstr' && option_picked='5'"); $opt5_cnt = mysqli_num_rows($res_c5); if($opt5_cnt != '1') { $count5_s = "s"; } if($fpoll_option_picked == '1') { $current_picked1 = "background-color: $username_color !important; color: $feed_tcolor !important"; } if($fpoll_option_picked == '2') { $current_picked2 = "background-color: $username_color !important; color: $feed_tcolor !important"; } if($fpoll_option_picked == '3') { $current_picked3 = "background-color: $username_color !important; color: $feed_tcolor !important"; } if($fpoll_option_picked == '4') { $current_picked4 = "background-color: $username_color !important; color: $feed_tcolor !important"; } if($fpoll_option_picked == '5') { $current_picked5 = "background-color: $username_color !important; color: $feed_tcolor !important"; } echo "A poll has been attached to this post.
"; if($fpoll_istimed == 'yes') { echo "There is a time limit- it will stop accepting responses in "; echo polltime($fpoll_tstmpend); echo "."; } else { echo "There is no time limit set- responses are always accepted."; } echo "

"; echo ""; echo "
"; echo "$feed_username $verif_check
"; echo "
"; echo "
"; echo ""; echo ""; echo "
"; echo "$fpoll_question"; echo "
"; echo "


"; echo "Select your response by tapping one of the options below.
"; if($current_can_vote == 'no') { echo "You can change your response by tapping a new option.
"; } echo "
"; echo ""; echo ""; if($fpoll_opt3 != '') { echo ""; } if($fpoll_opt4 != '') { echo ""; } if($fpoll_opt5 != '') { echo ""; } echo "
"; echo "$fpoll_opt1"; echo ""; echo "$fpoll_opt2"; echo ""; echo "$fpoll_opt3"; echo ""; echo "$fpoll_opt4"; echo ""; echo "$fpoll_opt5"; echo "
"; echo "
"; echo "
"; echo "$opt1_cnt voted \"$fpoll_optc1\"
"; echo "$opt2_cnt voted \"$fpoll_optc2\"
"; if($fpoll_opt3 != '') { echo "$opt3_cnt voted \"$fpoll_optc3\"
"; } if($fpoll_opt4 != '') { echo "$opt4_cnt voted \"$fpoll_optc4\"
"; } if($fpoll_opt5 != '') { echo "$opt5_cnt voted \"$fpoll_optc5\"
"; } echo "
Total Votes Received: $optt_cnt
"; echo "
"; // Added Feed polls. 2021 // Added Feed polls. 2021 // Added Feed polls. 2021 // Added Feed polls. 2021 echo "
"; } echo "
"; echo "
"; // Like count within the post. echo ""; echo "$likcnt_r like$ls"; echo "    "; // Dislike count within the post. echo ""; echo "$dlikcnt_r dislike$dls"; echo ""; // Comment count within the post. echo ""; echo "$comcnt_r comment$cs"; echo "
"; echo "
"; echo ""; echo "
"; # Determine whether or not the current account has liked the post. $gett = mysqli_query($conx, "SELECT id FROM feed_likes WHERE post_id='$feed_id' && uid='$u_uid'"); $isit = number_format(mysqli_num_rows($gett)); if($isit == 0) { // Current account has not liked the post. echo " like"; } else { // Current account has like the post. echo " unlike"; } echo ""; echo " "; echo "comment"; # Determine whether or not the current account has disliked the post. $gett = mysqli_query($conx, "SELECT id FROM feed_dislikes WHERE post_id='$feed_id' && uid='$u_uid'"); $isit = number_format(mysqli_num_rows($gett)); if($isit == "0") { // Current account has not disliked the post. echo " dislike"; } else { // Current account has disliked the post. echo " undislike"; } echo "
"; echo "
"; /* LIST OF LIKES */ /* LIST OF LIKES */ echo "
"; include("dis_like_infosies.php"); echo "
"; /* LIST OF LIKES */ /* LIST OF LIKES */ echo "
"; echo ""; echo ""; echo "
"; echo ""; // Write a comment. echo "
"; echo "
"; echo "
"; echo ""; echo ""; echo "
"; echo "
"; echo "
"; echo "
"; } } ?>