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