Subversion Repositories svnkaklik

Rev

Go to most recent revision | Details | Last modification | View Log

Rev Author Line No. Line
6 kaklik 1
<?php
2
 
3
$skin_name='s-blue';
4
$skin_license='GPL';
5
$skin_author_url='http://hot-things.net';  // a 'mailto:' link can also be used: 'mailto:email@email.com'
6
 
7
//--------------------------------------------------------------------------------------------
8
 
9
// FRAMESET ROWS - set height for the top and bottom frames and leave '*' for the middle
10
 
11
$fset='100,*,51';
12
 
13
//--------------------------------------------------------------------------------------------
14
 
15
// IMAGE ARRAY
16
//
17
// the elements in this array are called by the function show_pic() which prints image tags
18
// the format of each element is:
19
//
20
// file_name|width|height|alt_attribute|onmouseover_image|additional_attribute
21
//
22
// ( separator: | - you should always have 5 '|' in each element )
23
//
24
//  - "alt_attribute" might be taken from the language file /if you don't need it must exist as a blank/
25
//  - "additional_attribute" - e.g. hspace=\"0\" or onclick=\"alert('bla-bla')\"
26
//  - additional attributes can also be set as a second argument of the function show_pic(): show_pic($pics[0],'hspace="0"')
27
// 
28
// the background images are set in: skin_dir/style.css
29
 
30
$pics[0]="admin1.png|72|26|$lang[12]|admin2.png|";  // admin
31
$pics[1]="smile1.png|72|26|$lang[13]|smile2.png|";  // smilies
32
$pics[2]="rooms1.png|72|26|$lang[14]|rooms2.png|";  // rooms
33
$pics[3]="rfrsh1.png|44|44|$lang[15]|rfrsh2.png|";  // refresh
34
$pics[4]="chatt1.png|60|26|$lang[16]|chatt2.png|";  // chat
35
$pics[5]="hstry1.png|80|26|$lang[17]|hstry2.png|";  // history
36
$pics[6]="exitt1.png|42|42|$lang[18]|exitt2.png|";  // logout
37
$pics[7]="offset.png|38|11|$lang[24]||";            // time offset
38
$pics[8]="set_av.png|22|15|$lang[10]||";            // set avatar image
39
$pics[9]="tempim.png|50|50|$lang[10]||";            // will be loaded if image loading is aborted
40
 
41
// $pics[10]-$pics[12] are not called by show_pic(). However, the format of the elements is the same
42
 
43
$pics[10]="mssg1.png|42|42|$lang[55]|mssg2.png|";   // sound alert (on/off)
44
$pics[11]="rrate1.png|12|10|$lang[19]|rrate2.png|"; // refresh rate pics (default/onmouseover)
45
$pics[12]="rrate1.png|12|10|$lang[19]|rrate3.png|"; // refresh rate pics (default/on)
46
 
47
//--------------------------------------------------------------------------------------------
48
 
49
// SMILEY ARRAY
50
// 
51
// the format of each element is:
52
//
53
// smiley_code|file_name|width|height|alt_attribute
54
//
55
// you can use :-), :( etc as smiley codes
56
// separator: | - you should always have 4 '|' in each element
57
 
58
$smilies=array();
59
$smilies[0]="[smile]|s-smile.png|18|18|$lang[39]";
60
$smilies[1]="[blink]|s-blink.png|18|18|$lang[40]";
61
$smilies[2]="[cheerful]|s-cheerful.png|18|18|$lang[41]";
62
$smilies[3]="[cool]|s-cool.png|18|18|$lang[42]";
63
$smilies[4]="[grin]|s-grin.png|18|18|$lang[43]";
64
$smilies[5]="[happy]|s-happy.png|18|18|$lang[44]";
65
$smilies[6]="[hmm]|s-hmm.png|18|18|$lang[45]";
66
$smilies[7]="[kissing]|s-kissing.png|18|18|$lang[46]";
67
$smilies[8]="[laughing]|s-laughing.png|18|18|$lang[47]";
68
$smilies[9]="[lost]|s-lost.png|18|18|$lang[48]";
69
$smilies[10]="[oops]|s-oops.png|18|18|$lang[49]";
70
$smilies[11]="[unhappy]|s-unhappy.png|18|18|$lang[50]";
71
 
72
//--------------------------------------------------------------------------------------------
73
 
74
// TURING NUMBER - foreground and background colors
75
 
76
$bg['r']=0x51;                       // bg color - RED
77
$bg['g']=0x80;                       // bg color - GREEN
78
$bg['b']=0xce;                       // bg color - BLUE
79
$fg['r']=0xff;                       // fg color - RED
80
$fg['g']=0xff;                       // fg color - GREEN
81
$fg['b']=0xff;                       // fg color - BLUE
82
?>