'PDFPage', 'documentation' => 'PDFPage', 'description' => tra('Insert page with new settings in PDF'), 'tags' => [ 'advanced' ], 'body' => tra('Page Content'), 'prefs' => [ 'wikiplugin_pdf' ], 'format' => 'html', 'iconname' => 'pdf', 'introduced' => 18, 'params' => [ 'orientation' => [ 'name' => tra('PDF Orientation'), 'description' => tra('Landscape or portrait'), 'type' => 'list', 'default' => $prefs['print_pdf_mpdf_orientation'], 'options' => [ ['text' => 'Default','value' => ''], ['text' => 'Portrait','value' => 'P'], ['text' => 'Landscape','value' => 'L'], ], ], 'pagesize' => [ 'name' => tra('PDF page size'), 'description' => tra('ISO Standard sizes: A0, A1, A2, A3, A4, A5 or North American paper sizes: Letter, Legal, Tabloid/Ledger (for ledger, select landscape orientation)'), 'type' => 'list', 'options' => [ ['text' => 'Default','value' => ''], ['text' => 'Letter','value' => 'Letter'], ['text' => 'Legal','value' => 'Legal'], ['text' => 'Tabloid/Ledger','value' => 'Tabloid/Ledger'], ['text' => 'A0','value' => 'A0'], ['text' => 'A1','value' => 'A1'], ['text' => 'A2','value' => 'A2'], ['text' => 'A3','value' => 'A3'], ['text' => 'A4','value' => 'A4'], ['text' => 'A5','value' => 'A5'], ['text' => 'A6','value' => 'A6'] ] ], 'header' => [ 'name' => tra('PDF page header text'), 'description' => tra('Enter Wiki Syntax / HTML code / Plain text.
Possible values: Custom HTML / Wiki Syntax / text , {PAGENO}, {DATE j-m-Y}, Page {PAGENO} of {NB}, Left text| Center Text | Right Text.
Set header value as off, to turn off header from page'), 'tags' => ['basic'], 'type' => 'text', 'default' => $prefs['print_pdf_mpdf_header'], ], 'footer' => [ 'name' => tra('PDF page footer text'), 'description' => tra('Possible values: HTML / Wiki Syntax / Plain text, {include page="wiki_page_name"} {PAGENO}, {DATE j-m-Y}.
For example: {PAGETITLE}|Center Text|{PAGENO}, Page {PAGENO} of {NB}, {include page="wiki_page_name"}.
Set footer value as off, to remove footer from page'), 'type' => 'text', 'default' => $prefs['print_pdf_mpdf_footer'], ], 'margin_left' => [ 'name' => tra('Left margin'), 'description' => tra('Numeric value.For example 10'), 'type' => 'text', 'default' => $prefs['print_pdf_mpdf_margin_left'], 'size' => '2', 'filter' => 'digits', ], 'margin_right' => [ 'name' => tra('Right margin'), 'description' => tra('Numeric value, no need to add px. For example 10'), 'type' => 'text', 'default' => $prefs['print_pdf_mpdf_margin_right'], 'size' => '2', 'filter' => 'digits', ], 'margin_top' => [ 'name' => tra('Top margin'), 'description' => tra('Numeric value, no need to add px. For example 10'), 'type' => 'text', 'default' => $prefs['print_pdf_mpdf_margin_top'], 'size' => '2', 'filter' => 'digits', ], 'margin_bottom' => [ 'name' => tra('Bottom margin'), 'description' => tra('Numeric value, no need to add px. For example 10'), 'type' => 'text', 'default' => $prefs['print_pdf_mpdf_margin_bottom'], 'size' => '2', 'filter' => 'digits', ], 'margin_header' => [ 'name' => tra('Header margin from top of document'), 'description' => tra('Only applicable if header is set. Numeric value only, no need to add px.Warning: Header can overlap text if top margin is not set properly'), 'type' => 'text', 'default' => $prefs['print_pdf_mpdf_margin_header'], 'size' => '2', 'filter' => 'digits', ], 'margin_footer' => [ 'name' => tra('Footer margin from bottom of document'), 'description' => tra('Only applicable if footer is set.Numeric value only, no need to add px. Warning: Footer can overlap text if bottom margin is not set properly'), 'type' => 'text', 'default' => $prefs['print_pdf_mpdf_margin_footer'], 'size' => '2', 'filter' => 'digits', ], 'hyperlinks' => [ 'name' => tra('Hyperlink behaviour in PDF'), 'description' => tra(''), 'tags' => ['advanced'], 'type' => 'list', 'default' => '', 'options' => [ ['text' => 'Default','value' => ''], ['text' => 'Off (Links will be removed)','value' => 'off'], ['text' => 'Add as footnote (Links will be listed at end of document)','value' => 'footnote'], ] ], 'columns' => [ 'name' => tra('Number of columns'), 'description' => tra(''), 'tags' => ['advanced'], 'type' => 'list', 'default' => '', 'options' => [ ['text' => 'Default - 1 Column','value' => ''], ['text' => '2 Columns','value' => '2'], ['text' => '3 Columns','3'], ['text' => '4 Columns','4'], ] ], 'watermark' => [ 'name' => tra('Watermark text for this page. Set value as "off", to turn off watermark of the page'), 'description' => tra('Watermark text value, for example: Confidential, Draft etc.'), 'type' => 'text', 'default' => '', ], 'watermark_image' => [ 'name' => tra('Watermark image, enter full url'), 'description' => tra('To turn off watermark image on the page, set value as off'), 'type' => 'text', 'default' => 'Full URL of watermark image', ], 'background' => [ 'name' => tra('Page background color'), 'description' => tra('Enter a valid CSS color code.'), 'type' => 'text', 'default' => '', ], 'background_image' => [ 'name' => tra('Page background image'), 'description' => tra('Enter the full URL.'), 'type' => 'text', 'default' => '', ], ], ]; } function wikiplugin_pdfpage($data, $params) { $data = TikiLib::lib('parser')->parse_data($data, ['is_html' => true, 'parse_wiki' => true]); if (strstr($_GET['display'], 'pdf') == '') { return $data; } //included globals to check mpdf selection as pdf generation engine global $prefs; //checking if mdpf is default pdf generation engine, since plugin is only set for mpdf. if ($prefs['print_pdf_from_url'] != 'mpdf') { return WikiParser_PluginOutput::internalError(tr('For pluginPDF, please select mpdf as default PDF engine from Print Settings.')); } $paramList = ''; //creating string of data paramaters set by user foreach ($params as $paramName => $param) { $paramList .= $paramName . "='" . $param . "' "; } return "" . $data . ""; }