You are here

function fillpdf_pdftk_path in FillPDF 7

Wrapper around variable_get('fillpdf_pdftk_path').

Return value

string The variable fillpdf_pdftk_path if it is truthy. Otherwise, the default.

2 calls to fillpdf_pdftk_path()
fillpdf_execute_merge in ./fillpdf.module
Utility to allow other functions to merge PDFs.
fillpdf_execute_parse in ./fillpdf.module
Utility to allow other functions to parse PDFs.
2 string references to 'fillpdf_pdftk_path'
fillpdf_settings in ./fillpdf.admin.inc
Settings form for user to place API Key.
fillpdf_settings_validate in ./fillpdf.admin.inc

File

./fillpdf.module, line 2091

Code

function fillpdf_pdftk_path() {
  return variable_get('fillpdf_pdftk_path') ?: 'pdftk';
}