order_action.comment

Triggered on adding a comment to an order.

Shop-Script

Input (passed by reference)

$data array Action data.
$data['order_id'] int Order ID.
$data['action_id'] int Action ID.
$data['before_state_id'] int State ID before action execution.
$data['after_state_id'] int State ID after action execution.
$data['id'] int Order history log record ID.
… your plugin code …

Output

Shop-Script

Plugin code example

PHP

public function orderActionComment($params)
{
    waLog::dump($params, 'shop/myplugin/order-actions/comment.log');
}