table_def.inc 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <?php
  2. /*****************************************************
  3. TABLE DEFAULT DEFINES
  4. *****************************************************/
  5. $table_default_header_type = array(
  6. 'WIDTH' => 6,
  7. 'T_COLOR' => array(10,10,10),
  8. 'T_SIZE' => 10,
  9. 'T_FONT' => 'Arial',
  10. 'T_ALIGN' => 'C',
  11. 'V_ALIGN' => 'T',
  12. 'T_TYPE' => 'B',
  13. 'LN_SIZE' => 4,
  14. 'BG_COLOR' => array(0,199,229),
  15. 'BRD_COLOR' => array(0,92,177),
  16. 'BRD_SIZE' => 0.2,
  17. 'BRD_TYPE' => '1',
  18. 'BRD_TYPE_NEW_PAGE' => '',
  19. 'TEXT' => '',
  20. );
  21. $table_default_data_type = array(
  22. 'T_COLOR' => array(0,0,0),
  23. 'T_SIZE' => 8,
  24. 'T_FONT' => 'Arial',
  25. 'T_ALIGN' => 'N',
  26. 'V_ALIGN' => 'M',
  27. 'T_TYPE' => '',
  28. 'LN_SIZE' => 4,
  29. 'BG_COLOR' => array(255,255,255),
  30. 'BRD_COLOR' => array(0,92,177),
  31. 'BRD_SIZE' => 0.1,
  32. 'BRD_TYPE' => '1',
  33. 'BRD_TYPE_NEW_PAGE' => '',
  34. );
  35. $table_default_table_type = array(
  36. 'TB_ALIGN' => 'L',
  37. 'L_MARGIN' => 5,
  38. 'BRD_COLOR' => array(0,92,177),
  39. 'BRD_SIZE' => '0.3',
  40. );
  41. /*****************************************************
  42. TABLE DEFAULT DEFINES --- END
  43. *****************************************************/
  44. ?>