Advertisement
Mr_media

cart_pdf_config

Jan 20th, 2021
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.83 KB | None | 0 0
  1. plugin.tx_cartpdf {
  2. orderPdf {
  3.  
  4. storageRepository = {$plugin.tx_cartpdf.orderPdf.storageRepository}
  5. storageFolder = {$plugin.tx_cartpdf.orderPdf.storageFolder}
  6.  
  7. debug = 0
  8.  
  9. # font = Helvetica
  10. # fontStyle =
  11. fontSize = 10
  12.  
  13. # drawColor = 0,0,0
  14.  
  15. enableFoldMarks = 1
  16. enableAddressFieldMarks = 1
  17.  
  18. header {
  19. margin = 30mm
  20. html {
  21. logo {
  22. width = 50
  23. positionX = 10
  24. positionY = 5
  25. templatePath = /OrderPdf/Header/
  26. file = typo3conf/ext/italimporta_template/Resources/Public/Css/cart_pdf_logo.png
  27. }
  28.  
  29. content {
  30. width = 120
  31. positionX = 80
  32. positionY = 5
  33. templatePath = /OrderPdf/Header/
  34. fontSize = 8
  35. align = R
  36. }
  37. }
  38.  
  39. line {
  40. 1 {
  41. x1 = 10
  42. y1 = 24
  43. x2 = 200
  44. y2 = 24
  45. style {
  46. width = 0.5
  47. }
  48. }
  49. }
  50. }
  51.  
  52. footer {
  53. margin = 40mm
  54.  
  55. html {
  56. content {
  57. width = 190
  58. height = 35
  59. positionX = 15
  60. positionY = 265
  61. templatePath = /OrderPdf/Footer/
  62. fontSize = 8
  63. }
  64.  
  65. page {
  66. width = 100
  67. height = 10
  68. positionX = 115
  69. positionY = 290
  70. templatePath = /OrderPdf/Footer/
  71. fontSize = 8
  72. align = R
  73. }
  74. }
  75.  
  76. line {
  77. 1 {
  78. x1 = 10
  79. y1 = 262
  80. x2 = 200
  81. y2 = 262
  82. style {
  83. width = 0.5
  84. }
  85. }
  86. }
  87. }
  88.  
  89. letterhead {
  90. html {
  91. envelopeAddress {
  92. width = 83
  93. height = 10
  94. positionX = 21
  95. positionY = 46
  96. fontSize = 6
  97. }
  98.  
  99. invoiceAddress {
  100. width = 83
  101. height = 33
  102. positionX = 21
  103. positionY = 56
  104. }
  105.  
  106. date {
  107. width = 60
  108. height = 5
  109. positionX = 130
  110. positionY = 84
  111. align = R
  112. }
  113. }
  114. }
  115.  
  116. body {
  117. before {
  118. html {
  119. overview {
  120. width = 170
  121. positionX = 20
  122. positionY = 100
  123. fontSize = 12
  124. }
  125. }
  126. }
  127.  
  128. order {
  129. width=170
  130. positionX=20
  131. spacingY = 10
  132. fontSize=8
  133.  
  134. summary < plugin.tx_cart.settings.showCartAction.summary
  135. }
  136.  
  137. after {
  138. html {
  139. greetings {
  140. width = 170
  141. height = 20
  142. positionX = 20
  143. spacingY = 20
  144. }
  145. }
  146. }
  147. }
  148. }
  149. }
  150.  
  151. module.tx_cartpdf {
  152. orderPdf < plugin.tx_cartpdf.orderPdf
  153. }
  154.  
  155.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement