PluginProbe
GiveWP – Donation Plugin and Fundraising Platform / 4.16.9
GiveWP – Donation Plugin and Fundraising Platform v4.16.9
4.17.0 4.16.9 4.16.8.1 4.16.8 4.16.7.2 4.16.7.1 4.16.7 4.16.6.1 4.16.6 4.16.5.1 4.16.5 4.16.4 4.16.3 4.16.2 4.16.1 4.16.0 4.15.5 4.15.4 4.15.3 4.15.2 4.15.1 4.15.0 2.3.0 2.3.1 2.3.2 All 256 releases
← All changes | includes/libraries/give-pdf.php +8 -1 2.3.24.16.9 View file →
@@ -12,8 +12,15 @@
12 12 exit;
13 13 }
14 14
15 15 /**
16 + * Composer's autoload.php.
17 + */
18 +if ( ! class_exists( 'TCPDF' ) && file_exists( GIVE_PLUGIN_DIR . 'vendor/tecnickcom/tcpdf/tcpdf.php' ) ) {
19 + require_once GIVE_PLUGIN_DIR . 'vendor/tecnickcom/tcpdf/tcpdf.php';
20 +}
21 +
22 +/**
16 23 * Class Give_PDF
17 24 */
18 25 class Give_PDF extends TCPDF {
19 26
@@ -94,5 +101,5 @@
94 101
95 102 $this->Ln( $max_height * 7 );
96 103 }
97 104
98 -}
105 +}