<?php
/*
Plugin Name: Title Modify Links
Description: Add modify links to titles in admin record lists
Version: 1.00
Requires at least: 2.03
*/

// register callbacks

addFilter('listRow_displayValue', 'addModifyLinks', 9, 4);

function addModifyLinks($displayValue, $tableName, $fieldname, $record) {
// we've commented out the next line so this will affect all sections, uncomment to limit to one section
// if (@$tableName != 'accounts') { return $displayValue; }  // skip all but target section

  $html = '';
  $html .= "<a href='?menu=$tableName&action=edit&num={$record['num']}'>";
  $html .= $displayValue;
  $html .= "</a>";

  return $html;
}


?>
