• Downloading from our site will require you to have a paid membership. Upgrade to a Premium Membership from 10$ a month today!

    Dont forget read our Rules! Also anyone caught Sharing this content will be banned. By using this site you are agreeing to our rules so read them. Saying I did not know is simply not an excuse! You have been warned.

Share: Hàm hiển thị thành viêncho JohnCMS

djdungcuty

Active Member
Đây là hàm (function) hiển thị nick thành viên cho JohnCMS bao gồm:
+Màu nick
+Nick bị band

Các bạn tạo file mang tên func.php (Nếu đã có thì bỏ qua bước này) rồi dán code sau vào:
Code:
function nick($id, $mod = false) {
$ban = mysql_result(mysql_query("SELECT COUNT(*) FROM `cms_ban_users` WHERE `user_id` = '" . $id . "' AND `ban_time` > '" . time() . "'"), 0);
$user = mysql_fetch_array(mysql_query("SELECT * FROM `users` WHERE `id` = '" . $id . "'"));
if($ban > 0) {
$out .= '<font color="black">'.($mod == 1 ? '<small>' : '<b>').'<s>' . $user['name'] . '</s>'.($mod == 1 ? '</small>' : '</b>').'</font>';
} else {
if($user['rights'] > 1) {
if($user['rights'] == 3) {$font = '<font color="green">';}
if($user['rights'] > 3) {$font = '<font color="red">';}
if($user['rights'] == 6) {$font = '<font color="#993399">';}
if($user['rights'] == 7) {$font = '<font color="gold">';}
if($user['rights'] == 9) {$font = '<font color="red">';}
// NhanhNao.Mobi
if($user['rights'] == 10) {$font = '<font color="#7192a8">';}
$out .= ''.$font.'' . $user['name'] . '</font>';
} else {
$out .= '<font color="blue">' . $user['name'] . '</font>';
}
}
return $out;
}

Các bạn up func.php lên thư mục incfiles
Tiếp theo mở file incfiles/core.php và dán đoạn sau vào dưới cùng:
Code:
include'func.php';

Xong!

Hướng dẫn sử dụng trước khi dùng:
Các bạn sẽ phải chỉnh sửa forum/file index.php, function.php
Các dùng:
Tìm
Code:
$res['from']
(Trong forum)
Thay bằng:
Code:
nick($res['user_id'])

Như thế chắc cũng đủ hiểu rồi :D

----------> Bổ sung bài viết lúc 17:43 PM <----------> Bài viết trước lúc 17:42 PM <----------

Xin đa tạ các hạ đã xem bài :D
 

Facebook Comments

New posts New threads New resources

Back
Top