You are here

function views_pdf_views_api in Views PDF 6

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

Implementation of hook_views_api().

File

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

Code

function views_pdf_views_api() {
  return array(
    'api' => 2,
  );
}