| 1 |
<?php |
| 2 |
|
| 3 |
namespace Texty\Notifications\WC; |
| 4 |
|
| 5 |
class RefundedAdmin extends Base { |
| 6 |
|
| 7 |
/** |
| 8 |
* Initialize |
| 9 |
*/ |
| 10 |
public function __construct() { |
| 11 |
$this->title = __( 'Admin - When Order Status is Refunded', 'texty' ); |
| 12 |
$this->id = 'order_admin_refunded'; |
| 13 |
$this->group = 'wc'; |
| 14 |
$this->default_recipients = [ 'administrator' ]; |
| 15 |
|
| 16 |
$this->default = <<<'EOD' |
| 17 |
A refund has been processed for order #{order_id}. |
| 18 |
Customer: {billing_name} |
| 19 |
Refund Amount: {order_total} |
| 20 |
Site: {site_name} |
| 21 |
EOD; |
| 22 |
} |
| 23 |
} |
| 24 |
|