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
2d954e49
Commit
2d954e49
authored
5 years ago
by
pancho
Committed by
Liam Morland
5 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Issue #2962458 by Pancho: Document fillpdf_pdf_link()
parent
f2dc2f76
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
fillpdf.module
+20
-10
20 additions, 10 deletions
fillpdf.module
with
20 additions
and
10 deletions
fillpdf.module
+
20
−
10
View file @
2d954e49
...
...
@@ -244,23 +244,33 @@ function fillpdf_file_download_access_alter(&$grants, $file_item, $entity_type,
}
/**
*
Get
s a link
to the
printable PDF, merged with the passed-in data.
*
Build
s a link
generating a
printable PDF, merged with the passed-in data.
*
* @param $fid
* @param array|int $nids
* If you pass in one value it will merge with that node. If array, it will
* merge with multiple nodes, with later nids overriding previous ones.
* @param array $webform_arr
* Note that every time the path is hit, the PDF form will be merged afresh
* with the passed-in data, generating a new populated PDF file.
*
* You may provide multiple IDs of a particular type. In that case, tokens
* matching a later node, entity, webform etc. will override previous ones.
*
* @param int $fid
* FillPDF form ID.
* @param int|int[] $nids
* A single node ID or an array thereof.
* @param array|array[] $webform_arr
* Array of webforms, of this strucure: array('nid'=>1, 'sid'=>1)
* @param bool $sample
* TRUE if you want to populate the form with its own field-names (to get a
* gist of PDF)
* @param $uc_order_ids
* @param $uc_order_product_ids
* @param $entity_ids
* @param int|int[] $uc_order_ids
* A single Ubercart order ID or an array thereof.
* @param int|int[] $uc_order_product_ids
* A single Ubercart order product ID or an array thereof.
* @param string|string[] $entity_ids
* A single entity ID given in the form <code>$entity_type:$id</code>, or an
* array thereof.
*
* @return string
* The file
url
.
* The file
generation URL
.
*/
function
fillpdf_pdf_link
(
$fid
,
$nids
=
NULL
,
array
$webform_arr
=
NULL
,
$sample
=
FALSE
,
$uc_order_ids
=
NULL
,
$uc_order_product_ids
=
NULL
,
$entity_ids
=
NULL
)
{
$query
=
array
(
'fid'
=>
$fid
);
...
...
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