Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
fillpdf
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
drupal.org
fillpdf
Commits
55312595
Commit
55312595
authored
11 years ago
by
Liam Morland
Committed by
Bernd Oliver Sünderhauf
5 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Issue #1904100: Use DOMDocument() in create_xfdf() to avoid use of htmlspecialchars().
parent
36c27572
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
xfdf.inc
+30
-16
30 additions, 16 deletions
xfdf.inc
with
30 additions
and
16 deletions
xfdf.inc
+
30
−
16
View file @
55312595
...
@@ -6,26 +6,40 @@
...
@@ -6,26 +6,40 @@
*/
*/
/**
/**
*
create_xfdf
*
Generates an XFDF file from values given in an associative array.
*
*
* Takes values passed via associative array and generates XFDF file format
* @param string $file
* with that data for the pdf address sullpiled.
* The PDF file: URL or file path accepted.
* @param array $info
* Key/value pairs of the field data.
* @param string $enc
* The character encoding. Must match server output: default_charset in php.ini.
*
*
* @param string $file The pdf file - url or file path accepted
* @return string
* @param array $info data to use in key/value pairs no more than 2 dimensions
* The contents of the XFDF file.
* @param string $enc default UTF-8, match server output: default_charset in php.ini
* @return string The XFDF data for acrobat reader to use in the pdf form file
*/
*/
function
create_xfdf
(
$file
,
$info
,
$enc
=
'UTF-8'
)
{
function
create_xfdf
(
$file
,
$info
,
$enc
=
'UTF-8'
)
{
$data
=
'<?xml version="1.0" encoding="'
.
$enc
.
'"?>'
.
"
\n
"
.
$doc
=
new
DOMDocument
(
'1.0'
,
$enc
);
'<xfdf xmlns="http://ns.adobe.com/xfdf/" xml:space="preserve">'
.
"
\n
"
.
'<fields>'
.
"
\n
"
;
$xfdf_ele
=
$doc
->
appendChild
(
$doc
->
createElement
(
'xfdf'
));
$xfdf_ele
->
setAttribute
(
'xmlns'
,
'http://ns.adobe.com/xfdf/'
);
$xfdf_ele
->
setAttribute
(
'xml:space'
,
'preserve'
);
$fields_ele
=
$xfdf_ele
->
appendChild
(
$doc
->
createElement
(
'fields'
));
foreach
(
$info
as
$name
=>
$value
)
{
foreach
(
$info
as
$name
=>
$value
)
{
$data
.
=
'<field name="'
.
htmlspecialchars
(
$name
)
.
'"><value>'
.
htmlspecialchars
(
$value
)
.
'</value></field>'
.
"
\n
"
;
$field_ele
=
$fields_ele
->
appendChild
(
$doc
->
createElement
(
'field'
));
$field_ele
->
setAttribute
(
'name'
,
$name
);
$value_ele
=
$field_ele
->
appendChild
(
$doc
->
createElement
(
'value'
));
$value_ele
->
appendChild
(
$doc
->
createTextNode
(
$value
));
}
}
$data
.
=
'</fields>'
.
"
\n
"
.
'<ids original="'
.
md5
(
$file
)
.
'" modified="'
.
REQUEST_TIME
.
'" />'
.
"
\n
"
.
$ids_ele
=
$xfdf_ele
->
appendChild
(
$doc
->
createElement
(
'ids'
));
'<f href="'
.
$file
.
'" />'
.
"
\n
"
.
$ids_ele
->
setAttribute
(
'original'
,
md5
(
$file
));
'</xfdf>'
.
"
\n
"
;
$ids_ele
->
setAttribute
(
'modified'
,
REQUEST_TIME
);
return
$data
;
$f_ele
=
$xfdf_ele
->
appendChild
(
$doc
->
createElement
(
'f'
));
$f_ele
->
setAttribute
(
'href'
,
$file
);
return
$doc
->
saveXML
();
}
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment