20 lines
639 B
PHP
20 lines
639 B
PHP
<?php
|
|
/**
|
|
* Synchronization section template
|
|
*
|
|
* @package notification
|
|
*
|
|
* @var callable(string $var_name, string $default=): mixed $get Variable getter.
|
|
* @var callable(string $var_name, string $default=): void $the Variable printer.
|
|
* @var callable(string $var_name, string $default=): void $the_esc Escaped variable printer.
|
|
* @var BracketSpace\Notification\Dependencies\Micropackage\Templates\Template $this Template instance.
|
|
*/
|
|
|
|
echo wp_kses_data(
|
|
// Translators: Function name.
|
|
__( sprintf(
|
|
'Synchronization is disabled. You can enable it with %s function',
|
|
'<code>notification_sync()</code>'
|
|
), 'notification' )
|
|
);
|