PluginProbe
Easy Invoice – Invoice Generator, PDF Quotes & Payments / 2.4.1
Easy Invoice – Invoice Generator, PDF Quotes & Payments v2.4.1
2.4.0 2.4.1 2.3.8 2.3.7 2.3.6 2.3.5 2.3.4 2.3.3 2.3.2 2.3.1 2.2.0 2.1.21 2.1.20 2.1.19 2.1.18 2.1.0 2.1.1 2.1.10 2.1.11 2.1.12 2.1.13 2.1.14 2.1.15 2.1.16 2.1.2 All 57 releases
easy-invoice / templates / pdf / invoice.php

invoice.php in Easy Invoice – Invoice Generator, PDF Quotes & Payments 2.4.1, at templates/pdf/invoice.php

22 lines 542 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Invoice layout for server-side PDF rendering.
4 *
5 * The layout itself lives in document.php, which renders both invoices and
6 * quotes — they differ by four labels and one date, and keeping them as two
7 * copies of the same 260 lines is how the on-screen templates ended up with
8 * fixes applied to one and not the other.
9 *
10 * Override with the `easy_invoice_pdf_template_path` filter.
11 *
12 * @package Easy_Invoice
13 */
14
15 if ( ! defined( 'ABSPATH' ) ) {
16 exit;
17 }
18
19 $ei_pdf_type = 'invoice';
20
21 require __DIR__ . '/document.php';
22