first commit

This commit is contained in:
schwaral
2022-11-25 07:07:16 +01:00
commit c086b964da
3188 changed files with 1063828 additions and 0 deletions

View File

@ -0,0 +1,45 @@
<?php
/*****************************************************
TABLE DEFAULT DEFINES
*****************************************************/
$table_default_header_type = array(
'WIDTH' => 6,
'T_COLOR' => array(0,0,0),
'T_SIZE' => 10,
'T_FONT' => 'Times',
'T_ALIGN' => 'C',
'V_ALIGN' => 'T',
'T_TYPE' => 'B',
'LN_SIZE' => 4,
'BG_COLOR' => array(255,255,255),
'BRD_COLOR' => array(0,0,0), #Linienfarbe im Header
'BRD_SIZE' => 0.2,
'BRD_TYPE' => '1',
'BRD_TYPE_NEW_PAGE' => '',
'TEXT' => '',
);
$table_default_data_type = array(
'T_COLOR' => array(0,0,0),
'T_SIZE' => 10,
'T_FONT' => 'Times',
'T_ALIGN' => 'N',
'V_ALIGN' => 'M',
'T_TYPE' => '',
'LN_SIZE' => 4,
'BG_COLOR' => array(255,255,255),
'BRD_COLOR' => array(0,0,0),
'BRD_SIZE' => 0.2,
'BRD_TYPE' => '1',
'BRD_TYPE_NEW_PAGE' => '',
);
$table_default_table_type = array(
'TB_ALIGN' => 'L',
'L_MARGIN' => 13,
'BRD_COLOR' => array(0,0,0), # Farbe Au<41>enlinie
'BRD_SIZE' => '0.2',
);
/*****************************************************
TABLE DEFAULT DEFINES --- END
*****************************************************/
?>