Automattic\WooCommerce\Admin\Features\OnboardingTasks\Tasks

Payments::get_title()publicWC 1.0

Title.

Метод класса: Payments{}

Хуков нет.

Возвращает

Строку.

Использование

$Payments = new Payments();
$Payments->get_title();

Код Payments::get_title() WC 8.7.0

public function get_title() {
	if ( true === $this->get_parent_option( 'use_completed_title' ) ) {
		if ( $this->is_complete() ) {
			return __( 'You set up payments', 'woocommerce' );
		}
		return __( 'Set up payments', 'woocommerce' );
	}
	return __( 'Set up payments', 'woocommerce' );
}