46 lines
1.9 KiB
PHP
Executable File
46 lines
1.9 KiB
PHP
Executable File
<?php
|
|
|
|
/*****************************************************
|
|
TABLE DEFAULT DEFINES
|
|
*****************************************************/
|
|
|
|
$table_default_header_type = array(
|
|
'WIDTH' => 6, //cell width
|
|
'T_COLOR' => array(255,255,240), //text color
|
|
'T_SIZE' => 7, //font size
|
|
'T_FONT' => 'Arial', //font family
|
|
'T_ALIGN' => 'C', //horizontal alignment, possible values: LRC (left, right, center)
|
|
'V_ALIGN' => 'M', //vertical alignment, possible values: TMB(top, middle, bottom)
|
|
'T_TYPE' => 'B', //font type
|
|
'LN_SIZE' => 4, //line size for one row
|
|
'BG_COLOR' => array(25, 124, 224), //background color
|
|
'BRD_COLOR' => array(0,92,177), //border color
|
|
'BRD_SIZE' => 0.2, //border size
|
|
'BRD_TYPE' => '1', //border type, can be: 0, 1 or a combination of: "LRTB"
|
|
'TEXT' => '', //text
|
|
);
|
|
|
|
$table_default_data_type = array(
|
|
'T_COLOR' => array(0,0,0), //text color
|
|
'T_SIZE' => 6, //font size
|
|
'T_FONT' => 'Arial', //font family
|
|
'T_ALIGN' => 'C', //horizontal alignment, possible values: LRC (left, right, center)
|
|
'V_ALIGN' => 'M', //vertical alignment, possible values: TMB(top, middle, bottom)
|
|
'T_TYPE' => '', //font type
|
|
'LN_SIZE' => 4, //line size for one row
|
|
'BG_COLOR' => array(255,255,255), //background color
|
|
'BRD_COLOR' => array(0,92,177), //border color
|
|
'BRD_SIZE' => 0.1, //border size
|
|
'BRD_TYPE' => '1', //border type, can be: 0, 1 or a combination of: "LRTB"
|
|
);
|
|
|
|
$table_default_table_type = array(
|
|
'TB_ALIGN' => 'L', //table align on page
|
|
'L_MARGIN' => 0, //space to the left margin
|
|
'BRD_COLOR' => array(0,92,177), //border color
|
|
'BRD_SIZE' => '0.3', //border size
|
|
);
|
|
/*****************************************************
|
|
TABLE DEFAULT DEFINES --- END
|
|
*****************************************************/
|
|
?>
|