Bu mod ile kullanıcı isimlerine farklı renkler atayabilirsiniz. Örneğin admin nickini kırmızı yapabilirsiniz
http://custom.simplemachines.org/mods/index.php?mod=2506/Sources/Load.php
mem.signature, mem.personal_text,
mem.signature, mem.personal_text, mem.custom_color,
mem.signature, mem.personal_text, mem.location,
mem.signature, mem.personal_text, mem.custom_color, mem.location,
'blurb' => $profile['personal_text'],
'custom_color' => $profile['custom_color'],
./Sources/Profile-Modify.php
'personal_text' => array(
'type' => 'text',
'label' => $txt['personal_text'],
'log_change' => true,
'input_attr' => array('maxlength="50"'),
'size' => 50,
'permission' => 'profile_extra',
),
'custom_color' => array(
'type' => 'text',
'label' => $txt['custom_color_title'],
'subtext' => $txt['custom_color_subtext'],
'log_change' => true,
'input_attr' => array('maxlength="50"'),
'size' => 20,
'permission' => 'profile_ccolor',
),
'avatar_choice', 'hr', 'personal_text',
'avatar_choice', 'hr', 'personal_text', 'custom_color',
./Themes/default/Display.template.php
// Show a link to the member's profile.
echo '
', $message['member']['link'], '
// Show a link to the member's profile.
if (!empty($message['member']['custom_color']) && $message['member']['custom_color'] != '')
{
echo '
<a href="' . $scripturl . '?action=profile;u='. $message['member']['id'] . '" style="color: ' . $message['member']['custom_color'] . ';" title="' . $txt['custom_color_profile'] . ' ' . $message['member']['name'] . '">', $message['member']['name'], '</a>';
}
else
{
echo '
', $message['member']['link'] ,'';
}
echo '
./Sources/ManagePermissions.php
'profile_remote_avatar' => array(false, 'profile', 'use_avatar'),
'profile_remote_avatar' => array(false, 'profile', 'use_avatar'),
'profile_ccolor' => array(false, 'profile', 'edit_profile'),
./Themes/default/languages/Modifications.english.php
?>
$txt['custom_color_title'] = 'Custom Username Color';
$txt['custom_color_subtext'] = 'Format: red, green, blue OR #FFFFFF, #000000';
$txt['custom_color_profile'] = 'View the profile of';
./Themes/default/languages/Modifications.english-utf8.php
[code]Bul Dosyanın en sonunda]?>
$txt['custom_color_title'] = 'Custom Username Color';
$txt['custom_color_subtext'] = 'Format: red, green, blue OR #FFFFFF, #000000';
$txt['custom_color_profile'] = 'View the profile of';
Bu değişikliğin yapılmaması modifikasyonun çalışmasını etkilemeyecektir
./Themes/default/languages/ManagePermissions.english.php
?>
$txt['permissionname_profile_ccolor'] = 'Change username color';
$txt['permissionhelp_profile_ccolor'] = 'Changes the members username color on topic display to whatever they set it as.';
./Themes/default/languages/ManagePermissions.english-utf8.php
?>
$txt['permissionname_profile_ccolor'] = 'Change username color';
$txt['permissionhelp_profile_ccolor'] = 'Changes the members username color on topic display to whatever they set it as.';
Bu değişikliğin yapılmaması modifikasyonun çalışmasını etkilemeyecektir