backend_order_edit
Backend order edit page
Shop-Script
Input (passed by reference)
$order array Order data array.
… your plugin code …
Output
{$backend_order_edit.%plugin_id%}
Custom HTML code added to the bottom to order-editing screen.
Shop-Script
Plugin code example
PHP
public function backendOrderEdit($order) { return '<div class="block">'.shopMyPluginHelper::getOrderInfo($order['id']).'</div>'; }