Skip to content
Snippets Groups Projects
Commit 3355da2f authored by WizOne Solutions's avatar WizOne Solutions
Browse files

[#841502 wizonesolutions] Initial Drupal 7 port. Thanks Coder Upgrade.

parent b76cb06f
No related branches found
No related tags found
No related merge requests found
http://drupal.org/node/369990
\ No newline at end of file
Installation
------------
This module requires one of several external PDF manipulation tools. You can:
1. Deploy locally -- You'll need VPS or a dedicated server so you can deploy PHP/JavaBridge on Tomcat (see later section), or
2. Sign up for Fillpdf as-a-service [1], and plug your API key into /admin/settings/fillpdf
3. Install pdftk on your server and have that be used for PDF manipulation
Usage
-----
There are three steps to setting up a form with Fill PDF: (1) creating the webform/content-type, (2) mapping it to the PDF, (3) using a URL to merge the two.
1. To create the webform/content-type wherein users will enter data. Options:
* Use CCK
* Use webform (see #374121: Webform Support)
2. To map the webform to a PDF, do the following:
1. Go to /admin/content/fillpdf
2. Upload a PDF template, a form mapping will be generated [2]
3. When editing fields, note the following:
* "Label" is for your own use in identifying fields
* "PDF Key" is the field-name from the original PDF Form (such as text_field_1) and is the piece that maps the form-field to the PDF field
* "Value" is where you either enter static data to populate the field, or token-data to pull information form the users' forms. For example, if I created a CCK form with a text-field called field_first_name, then I would enter [field-field_first_name-raw] here. There is a list of tokens you can use at the bottom of that page.
3. Once your user fills a form, they'll need a link to download their PDF. You can place this link in a block, .tpl.php, or anywhere.
The link will need (1) The form-id (you can see an example URL on your form's edit-page), (2) the node-id, and/or (3) the webform's node-id and optionally its submission-id (defaults to latest-submission if none provided)
Here are some ways to generate the link:
* Add the link in PHP (recommended). Examples:
* One-node link: <?php echo l("PDF", fillpdf_pdf_link($form_id = 1, $node_id = 2)); ?>
* One-webform link (common): <?php echo l("PDF", fillpdf_pdf_link($form_id = 1, null, $webform = array('nid'=>3,'sid'=>4))); ?>
* Multiple nodes & webforms, later nids override conflicting fields (note: webforms without 'sid' default to latest submission)
<?php echo l("PDF", fillpdf_pdf_link($form_id = 1, $nids = array(1,2), $webforms = array( array('nid'=>3,'sid'=>1), array('nid'=>3))); ?>
* Add the link manually in HTML. Examples:
* One-node link: <a href="/fillpdf&fid=1&nid=2">PDF</a> [3]
* One-webform link: <a href="/fillpdf&fid=1&webform[nid]=3&webform[sid]=4">PDF</a>
* Multiple nodes & webforms, later nids override conflicting fields (note: webforms without 'sid' default to latest submission)
<a href="/fillpdf&fid=1&nids[]=1&nids[]=2&webforms[0][nid]=3&webforms[0][sid]=1&webforms[1][nid]=3">PDF</a>
Notes:
[1] http://fillpdf-service.com
[2] Make sure the PDF document isn't encrypted. If it is encrypted and non copy-righted (typical of government PDFs), then try a decrypting tool like "Advanced PDF Password Recovery". If you upload an encrypted PDF, you will have empty PDFs when you attempt to download your submissions.
[3] If clean URLs is not enabled, the URL will be in the format: /?q=fillpdf&fid=10&nid=10
Local Tomcat setup (optional)
-----------------------------
If you have a VPS or dedicated server and you'd rather install the iText service locally than use Fillpdf as-a-service, follow these instructions:
1. Install Tomcat (or any Java Servlet Container). Some pointers, if installing Tomcat on Ubuntu 9.10, webapps seem to not deploy without setting TOMCAT6_SECURITY=no in /etc/default/tomcat6. Tell me if you find an alternative.
2. Install PHP/Java-bridge on your same Drupal server by deploying the JavaBridge.war on Tomcat: http://php-java-bridge.sourceforge.net/pjb/installation.php. Click the "Download" link, which downloads the documentation/examples -- just extract JavaBridge.war
3. Download latest iText.jar from http://itextpdf.com/, and move it to $TOMCAT_DIRECTORY/webapps/JavaBridge/WEB-INF/lib
4. Do the same for FillpdfService.jar, from http://github.com/downloads/lefnire/fillpdf-service/FillpdfService.jar
5. Symlink or copy your JavaBridge webapp directory into fillpdf/lib. (eg, ln -s $TOMCAT_DIR/webapps/JavaBridge $DRUPAL_SITE/sites/all/modules/fillpdf/lib/JavaBridge)
6. Start Tomcat, then go to /admin/settings/fillpdf & tick the "Use Local Service" checkbox
Local pdftk installation (optional)
-----------------------------
As an alternative to using Tomcat and JavaBridge, you can use the pdftk program, which is installable on most servers via their package managers (e.g. yum install pdftk, apt-get install pdftk, etc.). You may also be able to find tutorials on the Internet to enable you to install this on shared hosting; additional steps may be required in that case. Once you have installed pdftk, make sure it is in your PATH, and you should then find it works automatically.
This diff is collapsed.
name = "Fill PDF"
description = "Allows users to populate PDF forms (using XFDF) from submitted node data."
; $Id$ admin_menu.info,v 1.5.2.1 2008/11/30 12:50:36 sun Exp $
name = Fill PDF
description = Allows users to populate PDF forms from submitted node data.
package = Other
dependencies = content token
\ No newline at end of file
core = 7.x
dependencies[] = content
dependencies[] = token
; Information added by drupal.org packaging script on 2011-01-04
version = "6.x-1.x-dev"
core = 7.x
project = "fillpdf"
datestamp = "1294143233"
files[] = fillpdf.admin.inc
files[] = fillpdf.install
files[] = fillpdf.module
files[] = webform_tokens.inc
files[] = xfdf.inc
This diff is collapsed.
<?php
// $Id$
/**
* Implements hook_token_values().
*/
function fillpdf_token_values($type, $object = NULL, $options = array()) {
// When making PDFs with fillpdf, this function is called twice, once with $type = 'node' and $object a node object, and once with $type = 'global' and $object = null. During node display, this function is only called once with $type = 'global' */
// static $tokens = array();
// static $run_once=false;if($run_once)return $tokens;$run_once=true;
switch ($type) {
// case 'global':
case 'webform':
$submission = $object;
$tokens['webform-meta-nid'] = $submission->nid;
$tokens['webform-meta-sid'] = $submission->sid;
$tokens['webform-meta-uid'] = $submission->uid;
$tokens['webform-meta-remote_addr'] = $submission->remote_addr;
$tokens['webform-meta-submitted'] = $submission->submitted;
$fields = array();
$q = db_query('SELECT cid, form_key, type, extra FROM {webform_component} WHERE nid = :nid', array(':nid' => $submission->nid));
while ($component = db_fetch_array($q)) {
// initialize empty fields, so they don't show as [webform-val-text_field] in the pdf
if ( !is_array($submission->data[$component['cid']]) ) {
$submission->data[$component['cid']] = array();
}
// add cid, form_key, etc along with ['value']
$submission->data[$component['cid']] += $component;
}
$tokens += _fillpdf_get_tokens_from_components($submission); // modify the submission
return $tokens;
}
}
/**
* Implements hook_token_list().
*/
function fillpdf_token_list($type = 'all') {
if ($type == 'webform' || $type == 'all') {
$tokens['webform']['webform-meta-nid'] = t("The webform's node id");
$tokens['webform']['webform-meta-sid'] = t("The webform's submission id");
$tokens['webform']['webform-meta-uid'] = t("The user's id who submitted the webform");
$tokens['webform']['webform-meta-remote_addr'] = t("The user's ip address who submitted the webform");
$tokens['webform']['webform-meta-submitted'] = t("The date the webform was submitted");
$fields = array();
$q = db_query('SELECT name, form_key FROM {webform_component}');
while ($component = db_fetch_array($q)) {
$tokens['webform']["webform-val-{$component['form_key']}"] = t("The value for webform component [{$component['name']}]");
}
return $tokens;
}
}
function _fillpdf_get_tokens_from_components($submission) {
$tokens = array();
foreach ($submission->data as $cid => $component) {
// $tokens["webform-val-{$component['form_key']}"] = $submission->data[$component['cid']]['value'][0];
// First, unserialize everything so we can work with them as arrays
switch ($component['type']) {
case 'fieldset':
case 'pagebreak':
break;
default:
$fullvalue = false;
// For components with selectable options (including grids), make an array of options in the form array(safe_key => "Some readable option", ...)
$options = false;
if (is_string($component['extra'])) {
$component['extra'] = unserialize($component['extra']);
// Selects use "items"
if (is_string($component['extra']['items'])) {
$component['extra']['options'] = $component['extra']['items'];
}
// Grids use "options"
if (is_string($component['extra']['options'])) {
foreach (preg_split('/[\r\n]+/', $component['extra']['options']) as $_) {
if (strpos($_, '|') !== false) {
$option = explode('|', $_, 2);
$options["$option[0]"] = $option[1];
}
else {
// Make sure the keys are strings
$options["$_"] = $_;
}
}
}
}
if ($options) {
$component['extra']['options'] = $options;
unset($options);
}
else {
$component['extra']['options'] = false;
}
}
if ($component['value']) {
switch ($component['type']) {
case 'date':
// Create ISO 8601 date
if ($component['value'][2] && $component['value'][0] && $component['value'][1]) {
$value = sprintf('%04d-%02d-%02d', $component['value'][2], $component['value'][0], $component['value'][1]);
}
else {
$value = '';
}
break;
case 'select':
case 'grid':
// Make webform-fullval token
$fullvalue = array();
foreach ($component['value'] as $value) {
if ($component['extra']['options'][$value]) {
$fullvalue[] = $component['extra']['options'][$value];
}
else {
$fullvalue[] = $value;
}
}
$fullvalue = implode(', ', $fullvalue);
// Don't break: every field gets a webform-val token
default:
// Usually there is only one value, so implode just removes the array
// Otherwise, separate the values with a comma
// BUG: There should probably be better handling for multiple values
$value = implode(', ', $component['value']);
}
}
else {
$value = '';
}
$tokens['webform-val-' . $component['form_key']] = $value;
if ($fullvalue) {
$tokens['webform-fullval-' . $component['form_key']] = $fullvalue;
}
}
return $tokens;
}
......@@ -3,63 +3,65 @@
/**
* createXFDF
*
*
* Tales values passed via associative array and generates XFDF file format
* with that data for the pdf address sullpiled.
*
*
* @param string $file The pdf file - url or file path accepted
* @param array $info data to use in key/value pairs no more than 2 dimensions
* @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 createXFDF($file, $info, $enc='UTF-8') {
$data='<?xml version="1.0" encoding="'. $enc .'"?>'."\n".
'<xfdf xmlns="http://ns.adobe.com/xfdf/" xml:space="preserve">'."\n".
'<fields>'."\n";
$data .= print_fields($info);
$data .= '</fields>'."\n".
'<ids original="'. md5($file) .'" modified="'. time() .'" />'."\n".
'<f href="'. $file .'" />'."\n".
'</xfdf>'."\n";
return $data;
function createXFDF($file, $info, $enc = 'UTF-8') {
$data = '<?xml version="1.0" encoding="' . $enc . '"?>' . "\n" .
'<xfdf xmlns="http://ns.adobe.com/xfdf/" xml:space="preserve">' . "\n" .
'<fields>' . "\n";
$data .= print_fields($info);
$data .= '</fields>' . "\n" .
'<ids original="' . md5($file) . '" modified="' . REQUEST_TIME . '" />' . "\n" .
'<f href="' . $file . '" />' . "\n" .
'</xfdf>' . "\n";
return $data;
}
function escape_string($str) {
if ($str == NULL) return $str;
if ($str == NULL) {
return $str;
}
$str = str_replace(array('\\', '\''), array('\\\\', '\\\''), $str);
return $str;
}
function print_fields($info) {
$fields=array();
$fields = array();
foreach ($info as $field => $val) {
$arr = explode('.', $field);
$str .= '$fields';
foreach ($arr as $node) {
$str .= "['{$node}']";
}
$str .= "='". escape_string($val) ."';";
$str .= "='" . escape_string($val) . "';";
}
eval($str);
$str='';
foreach ($fields as $field => $val) {
$str = '';
foreach ($fields as $field => $val) {
print_fields_recurse($field, $val, $str);
}
return $str;
}
function print_fields_recurse($field, $val, &$str) {
$str .= '<field name="'. $field .'">'."\n";
if (is_array($val)) {
$str .= '<field name="' . $field . '">' . "\n";
if (is_array($val)) {
foreach ($val as $field => $val) {
print_fields_recurse($field, $val, $str);
}
}
else {
$str .= '<value>'. $val .'</value>'."\n";
else {
$str .= '<value>' . $val . '</value>' . "\n";
}
$str .= '</field>'."\n";
$str .= '</field>' . "\n";
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment