WC_Admin_List_Table_Coupons::render_amount_column()
Render column: amount.
{} It's a method of the class: WC_Admin_List_Table_Coupons{}
No Hooks.
Return
null
. Nothing.
Usage
// protected - for code of main (parent) or child class $result = $this->render_amount_column();
Code of WC_Admin_List_Table_Coupons::render_amount_column() WC Admin List Table Coupons::render amount column WC 6.7.0
protected function render_amount_column() { echo esc_html( wc_format_localized_price( $this->object->get_amount() ) ); }