Automattic\WooCommerce\Internal\Orders
MobileMessagingHandler::no_app_message()
Prepares message with a deep link to learn more about mobile app.
Метод класса: MobileMessagingHandler{}
Хуков нет.
Возвращает
Строку
. formatted message
Использование
$result = MobileMessagingHandler::no_app_message( ?int $blog_id, $domain ): string;
- ?int $blog_id (обязательный)
- -
- $domain(строка) (обязательный)
- URL of the current site.
Код MobileMessagingHandler::no_app_message() MobileMessagingHandler::no app message WC 9.3.3
private static function no_app_message( ?int $blog_id, string $domain ): string { $deep_link_url = add_query_arg( array_merge( array( 'blog_id' => absint( $blog_id ), ), self::prepare_utm_parameters( 'deeplinks_promote_app', $blog_id, $domain ) ), 'https://woocommerce.com/mobile' ); return sprintf( /* translators: 1: opening link tag 2: closing link tag. */ esc_html__( 'Process your orders on the go. %1$sGet the app%2$s.', 'woocommerce' ), '<a href="' . esc_url( $deep_link_url ) . '">', '</a>' ); }