You are here

function theme_print_text in Printer, email and PDF versions 5.3

Define the strings displayed by the module in the printer-friendly template

Return value

array with the used text strings

1 theme call to theme_print_text()
_print_var_generator in ./print.pages.inc
Post-processor that fills the array for the template with common details

File

./print.module, line 373
Displays Printer-friendly versions of Drupal pages.

Code

function theme_print_text() {
  return array(
    'retrieved' => '',
    'sourceURL' => '',
    'published' => '',
    'by' => '',
    'created' => '',
    'links' => '',
  );
}