Skip to content
Snippets Groups Projects
Commit b8d081e5 authored by Liam Morland's avatar Liam Morland
Browse files

Issue #2190357: Normalize spelling to FillPDF instead of "Fill PDF".

parent 17cb50a5
No related branches found
No related tags found
No related merge requests found
...@@ -4,7 +4,7 @@ Installation ...@@ -4,7 +4,7 @@ Installation
This module requires one of several external PDF manipulation tools. You can: 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 or a similar servlet container, or 1. Deploy locally -- You'll need VPS or a dedicated server so you can deploy PHP/JavaBridge on Tomcat or a similar servlet container, or
2. Sign up for Fill PDF Service, and plug your API key into /admin/settings/fillpdf 2. Sign up for FillPDF Service, and plug your API key into /admin/settings/fillpdf
3. Install pdftk on your server and have that be used for PDF manipulation 3. Install pdftk on your server and have that be used for PDF manipulation
For more information, see the full documentation on drupal.org: http://drupal.org/documentation/modules/fillpdf For more information, see the full documentation on drupal.org: http://drupal.org/documentation/modules/fillpdf
...@@ -27,7 +27,7 @@ function fillpdf_settings($form, &$form_state) { ...@@ -27,7 +27,7 @@ function fillpdf_settings($form, &$form_state) {
$options = array( $options = array(
'pdftk' => t('Use locally-installed pdftk: You will need a VPS or a dedicated server so you can install pdftk: (!see_documentation).', array('!see_documentation' => l(t('see documentation'), 'http://drupal.org/documentation/modules/fillpdf'))), 'pdftk' => t('Use locally-installed pdftk: You will need a VPS or a dedicated server so you can install pdftk: (!see_documentation).', array('!see_documentation' => l(t('see documentation'), 'http://drupal.org/documentation/modules/fillpdf'))),
'local' => t('Use locally-installed PHP/JavaBridge: You will need a VPS or dedicated server so you can deploy PHP/JavaBridge on Apache Tomcat: (!see_documentation).', array('!see_documentation' => l(t('see documentation'), 'http://drupal.org/documentation/modules/fillpdf'))), 'local' => t('Use locally-installed PHP/JavaBridge: You will need a VPS or dedicated server so you can deploy PHP/JavaBridge on Apache Tomcat: (!see_documentation).', array('!see_documentation' => l(t('see documentation'), 'http://drupal.org/documentation/modules/fillpdf'))),
'remote' => t('Use Fill PDF Service: Sign up for <a href="https://fillpdf-service.com">Fill PDF Service</a>.'), 'remote' => t('Use FillPDF Service: Sign up for <a href="https://fillpdf-service.com">FillPDF Service</a>.'),
); );
// Check for JavaBridge. // Check for JavaBridge.
...@@ -50,7 +50,7 @@ function fillpdf_settings($form, &$form_state) { ...@@ -50,7 +50,7 @@ function fillpdf_settings($form, &$form_state) {
); );
$form['remote'] = array( $form['remote'] = array(
'#type' => 'fieldset', '#type' => 'fieldset',
'#title' => t('Configure Fill PDF Service'), '#title' => t('Configure FillPDF Service'),
'#collapsible' => TRUE, '#collapsible' => TRUE,
'#collapsed' => $fillpdf_service !== 'remote', '#collapsed' => $fillpdf_service !== 'remote',
); );
...@@ -58,7 +58,7 @@ function fillpdf_settings($form, &$form_state) { ...@@ -58,7 +58,7 @@ function fillpdf_settings($form, &$form_state) {
'#type' => 'textfield', '#type' => 'textfield',
'#title' => t('API Key'), '#title' => t('API Key'),
'#default_value' => variable_get('fillpdf_api_key', ''), '#default_value' => variable_get('fillpdf_api_key', ''),
'#description' => t('You need to sign up for an API key at <a href="https://fillpdf-service.com">Fill PDF Service</a>'), '#description' => t('You need to sign up for an API key at <a href="https://fillpdf-service.com">FillPDF Service</a>'),
); );
$form['remote']['fillpdf_remote_protocol'] = array( $form['remote']['fillpdf_remote_protocol'] = array(
'#type' => 'radios', '#type' => 'radios',
...@@ -74,7 +74,7 @@ function fillpdf_settings($form, &$form_state) { ...@@ -74,7 +74,7 @@ function fillpdf_settings($form, &$form_state) {
$form['fillpdf_pdftk_path'] = array( $form['fillpdf_pdftk_path'] = array(
'#type' => 'textfield', '#type' => 'textfield',
'#title' => t('Configure path to pdftk'), '#title' => t('Configure path to pdftk'),
'#description' => t("If Fill PDF is not detecting your pdftk installation, you can specify the full path to the program here. Include the program name as well. For example, <em>/usr/bin/pdftk</em> is a valid value. You can almost always leave this field blank. If you should set it, you'll probably know."), '#description' => t("If FillPDF is not detecting your pdftk installation, you can specify the full path to the program here. Include the program name as well. For example, <em>/usr/bin/pdftk</em> is a valid value. You can almost always leave this field blank. If you should set it, you'll probably know."),
'#default_value' => variable_get('fillpdf_pdftk_path'), '#default_value' => variable_get('fillpdf_pdftk_path'),
); );
...@@ -147,9 +147,9 @@ function fillpdf_forms_admin($form, &$form_state) { ...@@ -147,9 +147,9 @@ function fillpdf_forms_admin($form, &$form_state) {
} }
else { else {
$form['message'] = array( $form['message'] = array(
'#markup' => '<p>' . t('Before you can upload PDF files, you must !link.', array('!link' => l(t('configure Fill PDF'), 'admin/config/media/fillpdf'))) . '</p>', '#markup' => '<p>' . t('Before you can upload PDF files, you must !link.', array('!link' => l(t('configure FillPDF'), 'admin/config/media/fillpdf'))) . '</p>',
); );
drupal_set_message(t('Fill PDF is not configured.'), 'error'); drupal_set_message(t('FillPDF is not configured.'), 'error');
} }
return $form; return $form;
...@@ -244,7 +244,7 @@ function fillpdf_form_edit($form, &$form_state, $fid) { ...@@ -244,7 +244,7 @@ function fillpdf_form_edit($form, &$form_state, $fid) {
$pdf_form = db_query("SELECT * FROM {fillpdf_forms} WHERE fid = :fid", array(':fid' => $fid))->fetch(); $pdf_form = db_query("SELECT * FROM {fillpdf_forms} WHERE fid = :fid", array(':fid' => $fid))->fetch();
if ($pdf_form === FALSE) { if ($pdf_form === FALSE) {
drupal_set_message(t('Non-existent Fill PDF Form ID.'), 'error'); drupal_set_message(t('Non-existent FillPDF Form ID.'), 'error');
drupal_not_found(); drupal_not_found();
drupal_exit(); drupal_exit();
} }
...@@ -288,7 +288,7 @@ function fillpdf_form_edit($form, &$form_state, $fid) { ...@@ -288,7 +288,7 @@ function fillpdf_form_edit($form, &$form_state, $fid) {
$form['default_nid'] = array( $form['default_nid'] = array(
'#type' => 'textfield', '#type' => 'textfield',
'#title' => t('Default Node ID'), '#title' => t('Default Node ID'),
'#description' => t('When filling a PDF, use this node for the data source if no node is specified in the Fill PDF URL.'), '#description' => t('When filling a PDF, use this node for the data source if no node is specified in the FillPDF URL.'),
'#maxlength' => 10, '#maxlength' => 10,
'#default_value' => $pdf_form->default_nid, '#default_value' => $pdf_form->default_nid,
); );
...@@ -342,7 +342,7 @@ function fillpdf_form_edit($form, &$form_state, $fid) { ...@@ -342,7 +342,7 @@ function fillpdf_form_edit($form, &$form_state, $fid) {
'#title' => t('Custom path for generated PDFs'), '#title' => t('Custom path for generated PDFs'),
'#description' => t("<p>By default, filled PDFs are not saved to disk; they are simply sent '#description' => t("<p>By default, filled PDFs are not saved to disk; they are simply sent
directly to the browser for download. Enter a path here to change this behavior (tokens allowed). directly to the browser for download. Enter a path here to change this behavior (tokens allowed).
<strong>Warning! Unless you include the &download=1 flag in the Fill PDF URL, PDFs will only <strong>Warning! Unless you include the &download=1 flag in the FillPDF URL, PDFs will only
be saved to disk <em>and won't</em> be sent to the browser as well.</strong></p><p>The path be saved to disk <em>and won't</em> be sent to the browser as well.</strong></p><p>The path
you specify must be in one of the following two formats:<br /> you specify must be in one of the following two formats:<br />
<ul> <ul>
...@@ -550,16 +550,16 @@ function fillpdf_generate_mappings($pdf_form, $skip_encoding = FALSE) { ...@@ -550,16 +550,16 @@ function fillpdf_generate_mappings($pdf_form, $skip_encoding = FALSE) {
} }
/** /**
* Form for exporting Fill PDF field mappings * Form for exporting FillPDF field mappings
*/ */
function fillpdf_export_form($form, $form_state, $code) { function fillpdf_export_form($form, $form_state, $code) {
$form = array(); $form = array();
$form['export'] = array( $form['export'] = array(
'#type' => 'textarea', '#type' => 'textarea',
'#title' => t('Fill PDF Form Mappings'), '#title' => t('FillPDF Form Mappings'),
'#default_value' => $code, '#default_value' => $code,
'#rows' => 30, '#rows' => 30,
'#description' => t('Copy this code and then on the site you want to import to, go to the Edit page for the Fill PDF form for which you want to import these mappings, and paste it in there.'), '#description' => t('Copy this code and then on the site you want to import to, go to the Edit page for the FillPDF form for which you want to import these mappings, and paste it in there.'),
'#attributes' => array( '#attributes' => array(
'style' => 'width: 97%;', 'style' => 'width: 97%;',
), ),
...@@ -595,7 +595,7 @@ function fillpdf_form_import_form($form, &$form_state, $pdf_form) { ...@@ -595,7 +595,7 @@ function fillpdf_form_import_form($form, &$form_state, $pdf_form) {
'#type' => 'textarea', '#type' => 'textarea',
'#default_value' => '', '#default_value' => '',
'#rows' => 30, '#rows' => 30,
'#description' => t('Cut and paste the results of a <em>Fill PDF Field Mappings export</em> here.'), '#description' => t('Cut and paste the results of a <em>FillPDF Field Mappings export</em> here.'),
); );
$form['submit'] = array( $form['submit'] = array(
'#type' => 'submit', '#type' => 'submit',
...@@ -611,7 +611,7 @@ function fillpdf_form_import_form($form, &$form_state, $pdf_form) { ...@@ -611,7 +611,7 @@ function fillpdf_form_import_form($form, &$form_state, $pdf_form) {
function fillpdf_form_import_form_validate($form, &$form_state) { function fillpdf_form_import_form_validate($form, &$form_state) {
$mappings = json_decode($form_state['values']['code'], TRUE); $mappings = json_decode($form_state['values']['code'], TRUE);
if (empty($mappings) || !is_array($mappings)) { if (empty($mappings) || !is_array($mappings)) {
form_set_error('code', t('There was a problem processing your Fill PDF Field Mappings code. Please do a fresh export from the source and try pasting it again.')); form_set_error('code', t('There was a problem processing your FillPDF Field Mappings code. Please do a fresh export from the source and try pasting it again.'));
} }
else { else {
$form_state['values']['mappings'] = $mappings; $form_state['values']['mappings'] = $mappings;
...@@ -631,7 +631,7 @@ function fillpdf_form_import_form_submit($form, &$form_state) { ...@@ -631,7 +631,7 @@ function fillpdf_form_import_form_submit($form, &$form_state) {
} }
/** /**
* Import an array of decoded Fill PDF mappings. * Import an array of decoded FillPDF mappings.
* For the format, * For the format,
* @see fillpdf_generate_mappings() * @see fillpdf_generate_mappings()
*/ */
......
name = Fill PDF name = FillPDF
description = Allows users to populate PDF forms from submitted node data. description = Allows users to populate PDF forms from submitted node data.
package = Other package = Other
core = 7.x core = 7.x
......
...@@ -46,8 +46,8 @@ function fillpdf_menu() { ...@@ -46,8 +46,8 @@ function fillpdf_menu() {
// ------- Config --------------------------- // ------- Config ---------------------------
$items['admin/config/media/fillpdf'] = array( $items['admin/config/media/fillpdf'] = array(
'title' => 'Fill PDF settings', 'title' => 'FillPDF settings',
'description' => 'Configure tool to use with Fill PDF', 'description' => 'Configure tool to use with FillPDF',
'page callback' => 'drupal_get_form', 'page callback' => 'drupal_get_form',
'page arguments' => array('fillpdf_settings'), 'page arguments' => array('fillpdf_settings'),
'access arguments' => $access, 'access arguments' => $access,
...@@ -56,7 +56,7 @@ function fillpdf_menu() { ...@@ -56,7 +56,7 @@ function fillpdf_menu() {
// --------- Form ------------------------ // --------- Form ------------------------
$items['admin/structure/fillpdf'] = array( $items['admin/structure/fillpdf'] = array(
'title' => 'Fill PDF', 'title' => 'FillPDF',
'description' => 'Manage your PDFs', 'description' => 'Manage your PDFs',
'page callback' => 'drupal_get_form', 'page callback' => 'drupal_get_form',
'page arguments' => array('fillpdf_forms_admin'), 'page arguments' => array('fillpdf_forms_admin'),
...@@ -75,13 +75,13 @@ function fillpdf_menu() { ...@@ -75,13 +75,13 @@ function fillpdf_menu() {
'type' => MENU_CALLBACK, 'type' => MENU_CALLBACK,
); );
$items['admin/structure/fillpdf/%/export'] = array( $items['admin/structure/fillpdf/%/export'] = array(
'title' => 'Export Fill PDF field mappings', 'title' => 'Export FillPDF field mappings',
'page callback' => 'fillpdf_form_export', 'page callback' => 'fillpdf_form_export',
'page arguments' => array(3), 'page arguments' => array(3),
'access arguments' => $access, 'access arguments' => $access,
); );
$items['admin/structure/fillpdf/%/import'] = array( $items['admin/structure/fillpdf/%/import'] = array(
'title' => 'Import Fill PDF field mappings', 'title' => 'Import FillPDF field mappings',
'page callback' => 'drupal_get_form', 'page callback' => 'drupal_get_form',
'page arguments' => array('fillpdf_form_import_form', 3), 'page arguments' => array('fillpdf_form_import_form', 3),
'access arguments' => $access, 'access arguments' => $access,
...@@ -110,7 +110,7 @@ function fillpdf_permission() { ...@@ -110,7 +110,7 @@ function fillpdf_permission() {
return array( return array(
'administer pdfs' => array( 'administer pdfs' => array(
'title' => t('Administer PDFs'), 'title' => t('Administer PDFs'),
'description' => t('Allows usage of the Fill PDF administration screen.'), 'description' => t('Allows usage of the FillPDF administration screen.'),
), ),
'publish own pdfs' => array( 'publish own pdfs' => array(
'title' => t('Publish Own PDFs'), 'title' => t('Publish Own PDFs'),
...@@ -238,7 +238,7 @@ function fillpdf_parse_uri() { ...@@ -238,7 +238,7 @@ function fillpdf_parse_uri() {
function fillpdf_merge_pdf($fid, $nids = NULL, $webform_arr = NULL, $sample = NULL, $force_download = FALSE, $skip_access_check = FALSE, $flatten = TRUE, $handle = TRUE) { function fillpdf_merge_pdf($fid, $nids = NULL, $webform_arr = NULL, $sample = NULL, $force_download = FALSE, $skip_access_check = FALSE, $flatten = TRUE, $handle = TRUE) {
// Case 1: No $fid // Case 1: No $fid
if (is_null($fid)) { if (is_null($fid)) {
drupal_set_message(t('Fill PDF Form ID required to print a PDF.'), 'warning'); drupal_set_message(t('FillPDF Form ID required to print a PDF.'), 'warning');
drupal_goto(); drupal_goto();
} }
...@@ -246,7 +246,7 @@ function fillpdf_merge_pdf($fid, $nids = NULL, $webform_arr = NULL, $sample = NU ...@@ -246,7 +246,7 @@ function fillpdf_merge_pdf($fid, $nids = NULL, $webform_arr = NULL, $sample = NU
// Case 1.5: $fid is not valid. // Case 1.5: $fid is not valid.
if ($fillpdf_info === FALSE) { if ($fillpdf_info === FALSE) {
drupal_set_message(t('Non-existent Fill PDF Form ID.'), 'error'); drupal_set_message(t('Non-existent FillPDF Form ID.'), 'error');
drupal_not_found(); drupal_not_found();
drupal_exit(); drupal_exit();
} }
...@@ -466,7 +466,7 @@ function fillpdf_merge_pdf($fid, $nids = NULL, $webform_arr = NULL, $sample = NU ...@@ -466,7 +466,7 @@ function fillpdf_merge_pdf($fid, $nids = NULL, $webform_arr = NULL, $sample = NU
break; break;
default: default:
drupal_set_message(t('Fill PDF is not configured.'), 'error'); drupal_set_message(t('FillPDF is not configured.'), 'error');
drupal_goto(); drupal_goto();
} }
...@@ -560,7 +560,7 @@ function fillpdf_merge_handle_pdf($pdf_info, $pdf_data, $token_objects, $action ...@@ -560,7 +560,7 @@ function fillpdf_merge_handle_pdf($pdf_info, $pdf_data, $token_objects, $action
$redirect_to_file = $pdf_info->destination_redirect; $redirect_to_file = $pdf_info->destination_redirect;
case 'save': case 'save':
fillpdf_save_to_file($pdf_info, $pdf_data, $token_objects, $output_name, !$force_download, $redirect_to_file); fillpdf_save_to_file($pdf_info, $pdf_data, $token_objects, $output_name, !$force_download, $redirect_to_file);
// Fill PDF classic! // FillPDF classic!
case 'download': case 'download':
drupal_add_http_header("Pragma", "public"); drupal_add_http_header("Pragma", "public");
drupal_add_http_header('Expires', 0); drupal_add_http_header('Expires', 0);
...@@ -597,7 +597,7 @@ function fillpdf_save_to_file($pdf_info, $pdf_data, $token_objects, $output_name ...@@ -597,7 +597,7 @@ function fillpdf_save_to_file($pdf_info, $pdf_data, $token_objects, $output_name
the URL contained download=1, then the PDF was still sent to the user's browser. the URL contained download=1, then the PDF was still sent to the user's browser.
If you were redirecting them to the PDF, they were sent to the homepage instead. If you were redirecting them to the PDF, they were sent to the homepage instead.
If the destination path looks wrong and you have used tokens, check that you have If the destination path looks wrong and you have used tokens, check that you have
used the correct token and that it is available to Fill PDF at the time of PDF used the correct token and that it is available to FillPDF at the time of PDF
generation.", generation.",
array('%destination_path' => $destination_path)); array('%destination_path' => $destination_path));
} }
...@@ -779,7 +779,7 @@ function fillpdf_parse_pdf($fid) { ...@@ -779,7 +779,7 @@ function fillpdf_parse_pdf($fid) {
break; break;
default: default:
drupal_set_message(t('Fill PDF is not configured.'), 'error'); drupal_set_message(t('FillPDF is not configured.'), 'error');
drupal_goto('admin/structure/fillpdf'); drupal_goto('admin/structure/fillpdf');
} }
...@@ -890,7 +890,7 @@ function _fillpdf_xmlrpc_request($url, $method) { ...@@ -890,7 +890,7 @@ function _fillpdf_xmlrpc_request($url, $method) {
elseif ($result == FALSE || xmlrpc_error()) { elseif ($result == FALSE || xmlrpc_error()) {
$error = xmlrpc_error(); $error = xmlrpc_error();
$ret->error = TRUE; $ret->error = TRUE;
drupal_set_message(t('There was a problem contacting the Fill PDF service. drupal_set_message(t('There was a problem contacting the FillPDF service.
It may be down, or you may not have internet access. [ERROR @code: @message]', It may be down, or you may not have internet access. [ERROR @code: @message]',
array('@code' => $error->code, '@message' => $error->message)), 'error'); array('@code' => $error->code, '@message' => $error->message)), 'error');
} }
...@@ -991,7 +991,7 @@ function _fillpdf_transform_field_value($value, $pdf_replacements, $field_replac ...@@ -991,7 +991,7 @@ function _fillpdf_transform_field_value($value, $pdf_replacements, $field_replac
} }
/** /**
* Whoa, a load function! Fill PDF is growing up! * Whoa, a load function! FillPDF is growing up!
*/ */
function fillpdf_load($fid, $reset = FALSE) { function fillpdf_load($fid, $reset = FALSE) {
static $fillpdf = array(); static $fillpdf = array();
......
...@@ -21,8 +21,8 @@ ...@@ -21,8 +21,8 @@
function fillpdf_rules_data_info() { function fillpdf_rules_data_info() {
return array( return array(
'fillpdf' => array( 'fillpdf' => array(
'label' => t('Fill PDF metadata'), 'label' => t('FillPDF metadata'),
'group' => t('Fill PDF'), 'group' => t('FillPDF'),
'property info' => _fillpdf_rules_metadata_info(), 'property info' => _fillpdf_rules_metadata_info(),
), ),
); );
...@@ -30,21 +30,21 @@ function fillpdf_rules_data_info() { ...@@ -30,21 +30,21 @@ function fillpdf_rules_data_info() {
/** /**
* Implements hook_rules_event_info(). * Implements hook_rules_event_info().
* @todo: Define the "Fill PDF has filled the PDF" event * @todo: Define the "FillPDF has filled the PDF" event
* @todo: Define the following events: * @todo: Define the following events:
* - Fill PDF is about to prepare PDF-filling data (fillpdf_merge_pre_merge) * - FillPDF is about to prepare PDF-filling data (fillpdf_merge_pre_merge)
* - Fill PDF is ready to fill the PDF (fillpdf_merge_fields_alter) * - FillPDF is ready to fill the PDF (fillpdf_merge_fields_alter)
*/ */
function fillpdf_rules_event_info() { function fillpdf_rules_event_info() {
$defaults = array( $defaults = array(
'group' => t('Fill PDF'), 'group' => t('FillPDF'),
'module' => 'fillpdf', 'module' => 'fillpdf',
); );
return array( return array(
'fillpdf_merge_pre_handle' => $defaults + array( 'fillpdf_merge_pre_handle' => $defaults + array(
'label' => t('Filled PDF is about to be handled'), 'label' => t('Filled PDF is about to be handled'),
'variables' => array( 'variables' => array(
'fillpdf' => array('type' => 'fillpdf', 'label' => 'Fill PDF metadata'), 'fillpdf' => array('type' => 'fillpdf', 'label' => 'FillPDF metadata'),
), ),
) )
);; );;
...@@ -56,27 +56,27 @@ function fillpdf_rules_event_info() { ...@@ -56,27 +56,27 @@ function fillpdf_rules_event_info() {
* - Fill a PDF with data from content * - Fill a PDF with data from content
* - Fill a PDF with data from Webform submissions * - Fill a PDF with data from Webform submissions
* - Send PDF to user's browser * - Send PDF to user's browser
* - Generate a Fill PDF link (saves new variable - could be useful for e-mail * - Generate a FillPDF link (saves new variable - could be useful for e-mail
* templates and such) * templates and such)
*/ */
function fillpdf_rules_action_info() { function fillpdf_rules_action_info() {
$defaults = array( $defaults = array(
'group' => t('Fill PDF'), 'group' => t('FillPDF'),
); );
return array( return array(
'fillpdf_load' => $defaults + array( 'fillpdf_load' => $defaults + array(
'label' => t('Load a Fill PDF configuration'), 'label' => t('Load a FillPDF configuration'),
'base' => 'fillpdf_rules_action_load_fillpdf', 'base' => 'fillpdf_rules_action_load_fillpdf',
'provides' => array( 'provides' => array(
'fillpdf' => array( 'fillpdf' => array(
'type' => 'fillpdf', 'type' => 'fillpdf',
'label' => t('Fill PDF metadata'), 'label' => t('FillPDF metadata'),
), ),
), ),
'parameter' => array( 'parameter' => array(
'fid' => array( 'fid' => array(
'type' => 'integer', 'type' => 'integer',
'label' => t('Fill PDF Form ID'), 'label' => t('FillPDF Form ID'),
) )
), ),
), ),
...@@ -88,13 +88,13 @@ function fillpdf_rules_action_info() { ...@@ -88,13 +88,13 @@ function fillpdf_rules_action_info() {
'parameter' => array( 'parameter' => array(
'fillpdf' => array( 'fillpdf' => array(
'type' => 'fillpdf', 'type' => 'fillpdf',
'label' => t('Fill PDF metadata'), 'label' => t('FillPDF metadata'),
), ),
'webform_nid' => array( 'webform_nid' => array(
'type' => 'integer', 'type' => 'integer',
'label' => t('Webform Node ID'), 'label' => t('Webform Node ID'),
'optional' => TRUE, 'optional' => TRUE,
'description' => t('If you leave this blank, the <em>Default Node ID</em> from the Fill PDF configuration will be used.'), 'description' => t('If you leave this blank, the <em>Default Node ID</em> from the FillPDF configuration will be used.'),
), ),
'webform_sids' => array( 'webform_sids' => array(
'type' => 'list<integer>', 'type' => 'list<integer>',
...@@ -106,12 +106,12 @@ function fillpdf_rules_action_info() { ...@@ -106,12 +106,12 @@ function fillpdf_rules_action_info() {
), ),
'fillpdf_handle_default' => $defaults + array( 'fillpdf_handle_default' => $defaults + array(
'label' => t('Perform the default action on the PDF'), 'label' => t('Perform the default action on the PDF'),
'description' => t('Handle the PDF according to its Fill PDF configuration.'), 'description' => t('Handle the PDF according to its FillPDF configuration.'),
'base' => 'fillpdf_rules_action_handle_default', 'base' => 'fillpdf_rules_action_handle_default',
'parameter' => array( 'parameter' => array(
'fillpdf' => array( 'fillpdf' => array(
'type' => 'fillpdf', 'type' => 'fillpdf',
'label' => t('Fill PDF metadata'), 'label' => t('FillPDF metadata'),
) )
), ),
), ),
...@@ -127,7 +127,7 @@ function fillpdf_rules_action_info() { ...@@ -127,7 +127,7 @@ function fillpdf_rules_action_info() {
'parameter' => array( 'parameter' => array(
'fillpdf' => array( 'fillpdf' => array(
'type' => 'fillpdf', 'type' => 'fillpdf',
'label' => t('Fill PDF metadata'), 'label' => t('FillPDF metadata'),
) )
), ),
), ),
...@@ -171,7 +171,7 @@ function fillpdf_rules_action_load_fillpdf($fid) { ...@@ -171,7 +171,7 @@ function fillpdf_rules_action_load_fillpdf($fid) {
} }
/** /**
* Populates a loaded Fill PDF configuration's PDF with data. * Populates a loaded FillPDF configuration's PDF with data.
*/ */
function fillpdf_rules_action_merge_webform($fillpdf, $webform_nid = '', $webform_sids = array()) { function fillpdf_rules_action_merge_webform($fillpdf, $webform_nid = '', $webform_sids = array()) {
$skip_access_check = FALSE; $skip_access_check = FALSE;
......
...@@ -16,7 +16,7 @@ function fillpdf_default_rules_configuration() { ...@@ -16,7 +16,7 @@ function fillpdf_default_rules_configuration() {
"DO" : [ "DO" : [
{ "fillpdf_load" : { { "fillpdf_load" : {
"USING" : { "fid" : "6" }, "USING" : { "fid" : "6" },
"PROVIDE" : { "fillpdf" : { "fillpdf" : "Fill PDF metadata" } } "PROVIDE" : { "fillpdf" : { "fillpdf" : "FillPDF metadata" } }
} }
}, },
{ "fillpdf_merge_webform" : { { "fillpdf_merge_webform" : {
......
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