関数
OrderListPage::filterTransactionIdRowColumnValue( string $detail, string $value, string $key, int $order_id )
パラメータ パラメータ
- $detail
(文字列) (必須)
- $value
(文字列) (必須)
- $key
(文字列) (必須)
- $order_id
(数値) (必須)
ファイル: src/Admin/Views/OrderListPage.php
protected function filterTransactionIdRowColumnValue($detail, $value, $key, $order_id) { $tstate = (new OrderMeta($order_id))->getTransactionState(); if ($tstate === null) { return $detail; } $detail = $this->getTransactionIdRowColumnHtml($tstate); return $detail; }