Customize Entry Actions

While viewing a specific form entry, I was wondering if there’s any custom code to add a link in the “Entry Actions” box?  From the same function/page/place to put said code, I would also like to pull a specific value from the form entry being viewed via field id or key.  Is any of this possible?

Thanks!

There's no a hook inside that box, but you can add additional boxes if you'd like. Here's a hook:

add_action('frm_show_entry_sidebar', 'frm_show_entry_sidebar');
function frm_show_entry_sidebar($entry){
echo 'add stuff here';
}

Topic closed.