In your MY_fuel_modules.php file for the specific module, you can add the following: 'item_actions' => array('save', 'view', 'delete', 'create', 'others' => array('my_module/printit' => 'Print')), This will submit to a page at a route of fuel/my_module/printit. You will need to create a controller with a method of "printit" that outputs the printable detail information and associate that with route of "fuel/my_module/printit" = "my_module/printit" in the fuel/application/config/routes.php file.
Comments
'item_actions' => array('save', 'view', 'delete', 'create', 'others' => array('my_module/printit' => 'Print')),
This will submit to a page at a route of fuel/my_module/printit. You will need to create a controller with a method of "printit" that outputs the printable detail information and associate that with route of "fuel/my_module/printit" = "my_module/printit" in the fuel/application/config/routes.php file.