-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathskin.css.php
52 lines (44 loc) · 971 Bytes
/
skin.css.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<?php
header('Content-Type: text/css');
define('IN_MYBB', true);
require_once 'global.php';
$uid = $mybb->user["uid"];
$color_req = $db->query("SELECT customcolor AS color FROM ".TABLE_PREFIX."users WHERE uid = $uid");
while ($color_fetch = $db->fetch_array($color_req))
{
$color = $color_fetch["color"];
}
if ($color == "")
{
$color = $mybb->settings['customcolor_default']; // Write your default color here
}
$color = "#$color";
if (!empty($mybb->settings['customcolor_borders']))
{
echo $mybb->settings['customcolor_borders']."
{
border-color: $color;
}
";
}
if (!empty($mybb->settings['customcolor_texts']))
{
echo $mybb->settings['customcolor_texts']."
{
color: $color;
}
";
}
if (!empty($mybb->settings['customcolor_backgrounds']))
{
echo $mybb->settings['customcolor_backgrounds']."
{
background: $color;
}
";
}
echo "#colorpicker
{
background: $color;
}";
?>