関数
Utils::adminMessageString( int $order_id, string $status, string $message, boolean $success_msg = false )
Prepares admin message string to be displayed at the top of the admin panel.
パラメータ パラメータ
- $order_id
(数値) (必須)
- $status
(文字列) (必須)
- $message
(文字列) (必須)
- $success_msg
(boolean) (任意)
ファイル: src/V1/Utils.php
public static function adminMessageString($order_id, $status, $message, $success_msg = false) { $msgstr = ''; switch ($status) { case 'error': $msgstr = 'ERROR (ORDER_ID ' . $order_id . ')<br/>[Amazon Pay] -> ' . $message; break; case 'success': if ($success_msg) { $msgstr = 'SUCCESS (ORDER_ID ' . $order_id . ')<br/>[Amazon Pay] -> ' . $message; } break; } return $msgstr; }