]> git.agnieray.net Git - galette.git/blob - galette/includes/fields_defs/pdfmodels_fields.php
Remove 'svn' lines
[galette.git] / galette / includes / fields_defs / pdfmodels_fields.php
1 <?php
2
3 /* vim: set expandtab tabstop=4 shiftwidth=4 softtabstop=4: */
4
5 /**
6 * PDF models declarations
7 *
8 * PHP version 5
9 *
10 * Copyright © 2013-2014 The Galette Team
11 *
12 * This file is part of Galette (http://galette.tuxfamily.org).
13 *
14 * Galette is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU General Public License as published by
16 * the Free Software Foundation, either version 3 of the License, or
17 * (at your option) any later version.
18 *
19 * Galette is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 * GNU General Public License for more details.
23 *
24 * You should have received a copy of the GNU General Public License
25 * along with Galette. If not, see <http://www.gnu.org/licenses/>.
26 *
27 * @category Functions
28 * @package Galette
29 *
30 * @author Johan Cwiklinski <johan@x-tnd.be>
31 * @copyright 2013-2014 The Galette Team
32 * @license http://www.gnu.org/licenses/gpl-3.0.html GPL License 3.0 or (at your option) any later version
33 * @link http://galette.tuxfamily.org
34 * @since 0.7.5 - 2013-06-02
35 */
36
37 use Galette\Entity\PdfModel;
38
39 $pdfmodels_fields = array(
40 array(
41 'model_id' => PdfModel::MAIN_MODEL,
42 'model_name' => '_T("Main")',
43 'model_title' => null,
44 'model_type' => PdfModel::MAIN_MODEL,
45 'model_header' => '<table>
46 <tr>
47 <td id="pdf_assoname"><strong id="asso_name">{ASSO_NAME}</strong><br/>{ASSO_SLOGAN}</td>
48 <td id="pdf_logo">{ASSO_LOGO}</td>
49 </tr>
50 </table>',
51 'model_footer' => '<div id="pdf_footer">
52 _T("Association") {ASSO_NAME} - {ASSO_ADDRESS}<br/>
53 {ASSO_WEBSITE}
54 </div>',
55 'model_body' => null,
56 'model_styles' => 'div#pdf_title {
57 font-size: 1.4em;
58 font-wieght:bold;
59 text-align: center;
60 }
61
62 div#pdf_subtitle {
63 text-align: center;
64 }
65
66 div#pdf_footer {
67 text-align: center;
68 font-size: 0.7em;
69 }
70
71 td#pdf_assoname {
72 width: 75%;
73 font-size: 1.1em;
74 }
75
76 strong#asso_name {
77 font-size: 1.6em;
78 }
79
80 td#pdf_logo {
81 text-align: right;
82 width: 25%;
83 }
84
85 div[dir=\'rtl\'] td#pdf_logo {
86 text-align: left;
87 width: 0%;
88 }
89
90 div[dir=rtl] td#pdf_assoname {
91 width: 100%;
92 margin-left: 25%;
93 }',
94 'model_parent' => null
95 ),
96 array(
97 'model_id' => PdfModel::INVOICE_MODEL,
98 'model_name' => '_T("Invoice")',
99 'model_title' => '_T("Invoice") {CONTRIBUTION_YEAR}-{CONTRIBUTION_ID}',
100 'model_type' => PdfModel::INVOICE_MODEL,
101 'model_header' => null,
102 'model_footer' => null,
103 'model_body' => '<table>
104 <tr>
105 <td width="300"></td>
106 <td><strong>{NAME_ADH}</strong><br/>
107 {ADDRESS_ADH}<br/>
108 <strong>{ZIP_ADH} {TOWN_ADH}</strong>
109 </td>
110 </tr>
111 <tr>
112 <td height="100"></td>
113 </tr>
114 <tr>
115 <td colspan="2">
116 <table>
117 <thead>
118 <tr>
119 <th>_T("Label")</th>
120 <th>_T("Amount")</th>
121 </tr>
122 </thead>
123 <tbody>
124 <tr>
125 <td>
126 {CONTRIBUTION_LABEL} (_T("on") {CONTRIBUTION_DATE})<br/>
127 _T("from") {CONTRIBUTION_BEGIN_DATE} _T("to") {CONTRIBUTION_END_DATE}<br/>
128 {CONTRIBUTION_PAYMENT_TYPE}<br/>
129 {CONTRIBUTION_COMMENT}
130 </td>
131 <td>{CONTRIBUTION_AMOUNT}</td>
132 </tr>
133 </tbody>
134 </table>
135 </td>
136 </tr>
137 </table>',
138 'model_styles' => null,
139 'model_parent' => PdfModel::MAIN_MODEL
140 ),
141 array(
142 'model_id' => PdfModel::RECEIPT_MODEL,
143 'model_name' => '_T("Receipt")',
144 'model_title' => '_T("Receipt") {CONTRIBUTION_YEAR}-{CONTRIBUTION_ID}',
145 'model_type' => PdfModel::RECEIPT_MODEL,
146 'model_header' => null,
147 'model_footer' => null,
148 'model_body' => '<table>
149 <tr>
150 <td width="300"></td>
151 <td><strong>{NAME_ADH}</strong><br/>
152 {ADDRESS_ADH}<br/>
153 <strong>{ZIP_ADH} {TOWN_ADH}</strong>
154 </td>
155 </tr>
156 <tr>
157 <td height="100"></td>
158 </tr>
159 <tr>
160 <td colspan="2">
161 <table>
162 <thead>
163 <tr>
164 <th>_T("Label")</th>
165 <th>_T("Amount")</th>
166 </tr>
167 </thead>
168 <tbody>
169 <tr>
170 <td>
171 {CONTRIBUTION_LABEL} (_T("on") {CONTRIBUTION_DATE})<br/>
172 _T("from") {CONTRIBUTION_BEGIN_DATE} _T("to") {CONTRIBUTION_END_DATE}<br/>
173 {CONTRIBUTION_PAYMENT_TYPE}<br/>
174 {CONTRIBUTION_COMMENT}
175 </td>
176 <td>{CONTRIBUTION_AMOUNT}</td>
177 </tr>
178 </tbody>
179 </table>
180 </td>
181 </tr>
182 </table>',
183 'model_styles' => null,
184 'model_parent' => PdfModel::MAIN_MODEL
185 ),
186 array(
187 'model_id' => PdfModel::ADHESION_FORM_MODEL,
188 'model_name' => '_T("Adhesion form")',
189 'model_title' => '_T("Adhesion form")',
190 'model_type' => PdfModel::ADHESION_FORM_MODEL,
191 'model_header' => null,
192 'model_footer' => null,
193 'model_body' => '<hr/>
194 <div class="infos">_T("Complete the following form and send it with your funds, in order to complete your subscription.")</div>
195 <table>
196 <tr>
197 <td width="50%"></td>
198 <td width="50%">{ASSO_ADDRESS_MULTI}</td>
199 </tr>
200 </table>
201 <hr/>
202 <table>
203 <tr>
204 <td height="30"></td>
205 </tr>
206 <tr>
207 <td>_T("Required membership:")
208 <form action="none">
209 <input type="radio" class="box" name="cotisation" value="none1">_T("Active member")
210 <input type="radio" class="box" name="cotisation" value="none2">_T("Benefactor member")
211 <input type="radio" class="box" name="cotisation" value="none3">_T("Donation")
212 <div class="infos">_T("The minimum contribution for each type of membership are defined on the website of the association. The amount of donations are free to be decided by the generous donor.") </div>
213 </form>
214 </td>
215 </tr>
216 <tr>
217 <td height="30"></td>
218 </tr>
219 </table>
220 <table class="member">
221 <tr>
222 <td class="label">_T("Politeness")</td>
223 <td class="input">{TITLE_ADH}</td>
224 </tr>
225 <tr>
226 <td class="label">_T("Name")</td>
227 <td class="input">{LAST_NAME_ADH}</td>
228 </tr>
229 <tr>
230 <td class="label">_T("First name")</td>
231 <td class="input">{FIRST_NAME_ADH}</td>
232 </tr>
233 <tr>
234 <td class="label">_T("Company name") *</td>
235 <td class="input">{COMPANY_ADH}</td>
236 </tr>
237 <tr>
238 <td class="label">_T("Address")</td>
239 <td class="input">{ADDRESS_ADH}</td>
240 </tr>
241 <tr>
242 <td class="label"></td>
243 <td class="input"></td>
244 </tr>
245 <tr>
246 <td class="label"></td>
247 <td class="input"></td>
248 </tr>
249 <tr>
250 <td class="label">_T("Zip Code")</td>
251 <td class="cpinput">{ZIP_ADH}</td>
252 <td class="label">_T("City")</td>
253 <td class="towninput">{TOWN_ADH}</td>
254 </tr>
255 <tr>
256 <td class="label">_T("Country")</td>
257 <td class="input">{COUNTRY_ADH}</td>
258 </tr>
259 <tr>
260 <td class="label">_T("Email address")</td>
261 <td class="input">{EMAIL_ADH}</td>
262 </tr>
263 <tr>
264 <td class="label">_T("Username") **</td>
265 <td class="input">{LOGIN_ADH}</td>
266 </tr>
267 <tr>
268 <td colspan="2" height="10"></td>
269 </tr>
270 <tr>
271 <td class="label">_T("Amount")</td>
272 <td class="input"></td>
273 </tr>
274 </table>
275 <p>str_replace(\'%s\', \'{ASSO_NAME}\', \'_T("Hereby, I agree to comply to %s association statutes and its rules.")\')</p><p>_T("At ................................................")</p><p>_T("On .......... / .......... / .......... ")</p><p>_T("Signature")</p>
276 <p class="notes">_T("* Only for compagnies")<br/>_T("** Galette identifier, if applicable")</p>',
277 'model_styles' => 'td.label {
278 width: 20%;
279 font-weight: bold;
280 }
281 td.input {
282 width: 80%;
283 border-bottom: 1px dotted black;
284 }
285
286 td.cpinput {
287 width: 10%;
288 border-bottom: 1px dotted black;
289 }
290
291 td.towninput {
292 width: 50%;
293 border-bottom: 1px dotted black;
294 }
295
296 div.infos {
297 font-size: .8em;
298 }
299
300 p.notes {
301 font-size: 0.6em;
302 text-align: right;
303 }
304
305 .member td {
306 line-height: 20px;
307 height: 20px;
308 }',
309 'model_parent' => PdfModel::MAIN_MODEL
310 )
311 );