Consider making a copy of the original script, remove unwanted fields, save as CopyOfOriginalScript.php, and add a virtual (dummy) field with the edit link.
| Kód: |
$opts['fdd']['dummy1'] = array (
'input' => 'R',
'name' => 'Virtual field',
'sql' => 'CONCAT("<a href=\"http://foo.com/CopyOfOriginalScript.php?PME_sys_fl=1&PME_sys_fm=0&PME_sys_sfn[0]=2&PME_sys_operation=PME_op_Change&PME_sys_rec=", record_id, "\" target=\"_blank\">Edit in new window</a>")',
'options' => 'FL',
'escape' => false,
'sort' => true
); |
|