<?php
/*
Plugin Name: Create PDF - Menu Link
Description: Adds a PDF link to record lists in the admin
Version: 1.00
Requires at least: 2.04
*/

// DON'T UPDATE ANYTHING BELOW THIS LINE

addFilter('listRow_actionLinks',  'pdf_addLink',           null, 3);

// add "create record here" link
function pdf_addLink($actionLinks, $tableName, $record) {
  global $schema;

  // Add a line with the url for each section
  $pdfLink = '';
  if (@$tableName == 'news') { $pdfLink = "http://localhost/cesar/pdf.php?" . $record['num']; }

  //
  if ($pdfLink) {
    $actionLinks = "<a href='$pdfLink'>pdf</a> " . $actionLinks;
  }

  //
  return $actionLinks;
}

?>
