WC_Payment_Gateway::get_method_title()
Return the title for admin screens.
Метод класса: WC_Payment_Gateway{}
Хуки из метода
Возвращает
Строку
.
Использование
$WC_Payment_Gateway = new WC_Payment_Gateway(); $WC_Payment_Gateway->get_method_title();
Код WC_Payment_Gateway::get_method_title() WC Payment Gateway::get method title WC 9.7.1
public function get_method_title() { /** * Filter the method title. * * @since 2.6.0 * @param string $title Method title. * @param WC_Payment_Gateway $this Payment gateway instance. * @return string */ return apply_filters( 'woocommerce_gateway_method_title', $this->method_title, $this ); }