You are here

function views_pdf_get_hyphenations in Views PDF 7

Same name and namespace in other branches
  1. 6 views_pdf.module \views_pdf_get_hyphenations()
  2. 7.3 views_pdf.module \views_pdf_get_hyphenations()
  3. 7.2 views_pdf.module \views_pdf_get_hyphenations()

This method returns all available hyphenation patterns (paths to files).

3 calls to views_pdf_get_hyphenations()
views_pdf_plugin_display::options_form in ./views_pdf_plugin_display.inc
Option form
views_pdf_plugin_row_fields::options_form in ./views_pdf_plugin_row_fields.inc
Provide a form for setting options.
views_pdf_plugin_style_table::options_form in ./views_pdf_plugin_style_table.inc
Options form

File

./views_pdf.module, line 124
PDF Views allows the creation of PDF's directly from a view. Without the creation of HTML first.

Code

function views_pdf_get_hyphenations() {
  _views_pdf_include_pdf_lib();
  return PdfTemplate::getAvailableHyphenatePatterns();
}