first commit
This commit is contained in:
45
prints/example2_def.inc
Executable file
45
prints/example2_def.inc
Executable file
@ -0,0 +1,45 @@
|
||||
<?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' => '', //font type
|
||||
'LN_SIZE' => 3, //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' => 3, //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' => 'C', //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
|
||||
*****************************************************/
|
||||
?>
|
Reference in New Issue
Block a user