-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.inc.php
94 lines (78 loc) · 2.54 KB
/
styles.inc.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<?php
/*=======================================================================================
* *
* styles.inc.php *
* *
*======================================================================================*/
/**
* Local styles include file.
*
* This file contains general purpose styles used to format example scripts output.
*
* @package Test
* @subpackage Framework
*
* @author Milko A. Skofic <m.skofic@cgiar.org>
* @version 1.00 23/02/2012
*/
/*=======================================================================================
* TABLE STYLE *
*======================================================================================*/
/**
* Table prefix.
*
* This value defines the table prefix.
*/
define( "kSTYLE_TABLE_PRE", '<table border="1" cellspacing="2" cellpadding="2" bordercolor="#000000">' );
/**
* Table postfix.
*
* This value defines the table postfix.
*/
define( "kSTYLE_TABLE_POS", '</table>' );
/*=======================================================================================
* ROW STYLE *
*======================================================================================*/
/**
* Row prefix.
*
* This value defines the table prefix.
*/
define( "kSTYLE_ROW_PRE", '<tr bgcolor="#DDDDDD" scope="row">' );
/**
* Row postfix.
*
* This value defines the table postfix.
*/
define( "kSTYLE_ROW_POS", '</tr>' );
/*=======================================================================================
* HEADER STYLE *
*======================================================================================*/
/**
* Head prefix.
*
* This value defines the header prefix.
*/
define( "kSTYLE_HEAD_PRE", '<th nowrap="nowrap" align="right" valign="middle"><font face="Verdana, Lucida Sans, Arial, Helvetica, sans-serif" size="-1"><em>' );
/**
* Head postfix.
*
* This value defines the header postfix.
*/
define( "kSTYLE_HEAD_POS", '</em></font></th>' );
/*=======================================================================================
* DATA STYLE *
*======================================================================================*/
/**
* Data prefix.
*
* This value defines the data prefix.
*/
define( "kSTYLE_DATA_PRE", '<td align="left" valign="middle"><font face="Verdana, Lucida Sans, Arial, Helvetica, sans-serif" size="-1">' );
/**
* Data postfix.
*
* This value defines the data postfix.
*/
define( "kSTYLE_DATA_POS", '</font></td>' );
?>