PluginProbe
E2Pdf – Export Pdf Tool for WordPress / trunk
E2Pdf – Export Pdf Tool for WordPress vtrunk
1.32.48 1.32.43 1.32.40 1.32.34 1.32.32 1.32.31 1.32.26 1.32.22 1.32.23 1.32.18 1.32.17 1.32.15 trunk 1.00.00 1.00.13 1.01.01 1.02.02 1.03.07 1.04.07 1.05.03 1.06.02 1.07.11 1.08.00 1.08.06 1.08.09 All 71 releases
e2pdf / classes / model / e2pdf-convert.php

e2pdf-convert.php in E2Pdf – Export Pdf Tool for WordPress trunk, at classes/model/e2pdf-convert.php

31 lines 703 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 /**
4 * File: /model/e2pdf-convert.php
5 *
6 * @package E2Pdf
7 * @license GPLv3
8 * @link https://e2pdf.com
9 */
10 if (!defined('ABSPATH')) {
11 die('Access denied.');
12 }
13
14 class Model_E2pdf_Convert extends Model_E2pdf_Model {
15
16 // to PHP
17 public function toPHP($data = array()) {
18 $content = '';
19 foreach ($data as $key => $value) {
20 if (is_array($value)) {
21 $content .= "'" . $key . "' => [";
22 $content .= $this->toPHP($value);
23 $content .= "],\n";
24 } else {
25 $content .= "'" . $key . "' => '" . str_replace("'", "\'", $value) . "',\n";
26 }
27 }
28 return $content;
29 }
30 }
31