HEX
Server: LiteSpeed
System: Linux linux31.centraldnserver.com 4.18.0-553.83.1.lve.el8.x86_64 #1 SMP Wed Nov 12 10:04:12 UTC 2025 x86_64
User: salamatk (1501)
PHP: 8.1.33
Disabled: show_source, system, shell_exec, passthru, exec, popen, proc_open
Upload Files
File: /home/salamatk/.trash/woodmart1/inc/admin/modules/dashboard/templates/status-button.php
<?php
/**
 * Status button template.
 *
 * @var string $nonce security nonce.
 * @var string $status status of publication.
 * @var int $post_id publication id.
 * @package Woodmart
 */

$classes = '';

if ( 'publish' === $status ) {
	$classes .= ' xts-active';
}
?>

<div class="xts-switcher-btn<?php echo esc_attr( $classes ); ?>" data-id="<?php echo esc_attr( $post_id ); ?>" data-status="<?php echo esc_attr( $status ); ?>" data-security="<?php echo esc_attr( $nonce ); ?>">
	<div class="xts-switcher-dot-wrap">
		<div class="xts-switcher-dot"></div>
	</div>
	<div class="xts-switcher-labels">
		<span class="xts-switcher-label xts-on">
			<?php echo esc_html__( 'On', 'woodmart' ); ?>
		</span>

		<span class="xts-switcher-label xts-off">
			<?php echo esc_html__( 'Off', 'woodmart' ); ?>
		</span>
	</div>
</div>