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
4fd14c64
Commit
4fd14c64
authored
5 years ago
by
Liam Morland
Browse files
Options
Downloads
Patches
Plain Diff
Issue #3052463: Refactor fillpdf_file_download(): Combine 'foreach'
parent
2d954e49
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
fillpdf.module
+26
-30
26 additions, 30 deletions
fillpdf.module
with
26 additions
and
30 deletions
fillpdf.module
+
26
−
30
View file @
4fd14c64
...
@@ -185,36 +185,32 @@ function fillpdf_file_download($uri) {
...
@@ -185,36 +185,32 @@ function fillpdf_file_download($uri) {
// your own module for more control.
// your own module for more control.
$usage
=
file_usage_list
(
$file
);
$usage
=
file_usage_list
(
$file
);
foreach
(
$usage
as
$module
=>
$per_module
)
{
foreach
(
$usage
[
'fillpdf'
]
as
$type
=>
$per_id
)
{
if
(
$module
===
'fillpdf'
)
{
if
(
$type
===
'fillpdf_form'
)
{
foreach
(
$per_module
as
$type
=>
$per_id
)
{
// Only people who can manage forms can download the source forms.
if
(
$type
===
'fillpdf_form'
)
{
if
(
user_access
(
'administer pdfs'
))
{
// Only people who can manage forms can download the source forms.
return
file_get_content_headers
(
$file
);
if
(
user_access
(
'administer pdfs'
))
{
}
return
file_get_content_headers
(
$file
);
}
}
if
(
$type
===
'fillpdf_file'
)
{
}
foreach
(
$per_id
as
$id
=>
$count
)
{
if
(
$type
===
'fillpdf_file'
)
{
$raw_file_context
=
fillpdf_file_context_load
(
$id
);
foreach
(
$per_id
as
$id
=>
$count
)
{
$raw_file_context
=
fillpdf_file_context_load
(
$id
);
if
(
$raw_file_context
)
{
// Expand the stored link into a stub context (entities not
if
(
$raw_file_context
)
{
// loaded).
// Expand the stored link into a stub context (entities not
$stub_context
=
fillpdf_link_to_stub_context
(
$raw_file_context
);
// loaded).
$stub_context
=
fillpdf_link_to_stub_context
(
$raw_file_context
);
if
(
$stub_context
[
'fid'
])
{
// Expand the stub context (load the entities).
if
(
$stub_context
[
'fid'
])
{
$fillpdf_info
=
fillpdf_load
(
$stub_context
[
'fid'
]);
// Expand the stub context (load the entities).
$file_context
=
fillpdf_load_entities
(
$fillpdf_info
,
$stub_context
[
'nids'
],
$stub_context
[
'webforms'
],
$stub_context
[
'uc_order_ids'
],
$stub_context
[
'uc_order_product_ids'
],
$GLOBALS
[
'user'
],
$stub_context
[
'entity_ids'
]);
$fillpdf_info
=
fillpdf_load
(
$stub_context
[
'fid'
]);
$file_context
=
fillpdf_load_entities
(
$fillpdf_info
,
$stub_context
[
'nids'
],
$stub_context
[
'webforms'
],
$stub_context
[
'uc_order_ids'
],
$stub_context
[
'uc_order_product_ids'
],
$GLOBALS
[
'user'
],
$stub_context
[
'entity_ids'
]);
// Check access as if they were filling in the PDF from
// scratch.
// Check access as if they were filling in the PDF from
if
(
fillpdf_merge_pdf_access
(
$file_context
[
'nodes'
],
$file_context
[
'webforms'
],
$file_context
[
'uc_orders'
],
$file_context
[
'uc_order_products'
]))
{
// scratch.
// We don't need to add any special headers.
if
(
fillpdf_merge_pdf_access
(
$file_context
[
'nodes'
],
$file_context
[
'webforms'
],
$file_context
[
'uc_orders'
],
$file_context
[
'uc_order_products'
]))
{
return
file_get_content_headers
(
$file
);
// We don't need to add any special headers.
return
file_get_content_headers
(
$file
);
}
}
}
}
}
}
}
}
...
...
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