HEX
Server: LiteSpeed
System: Linux eko108.isimtescil.net 4.18.0-477.21.1.lve.1.el8.x86_64 #1 SMP Tue Sep 5 23:08:35 UTC 2023 x86_64
User: uyarreklamcomtr (11202)
PHP: 7.4.33
Disabled: opcache_get_status
Upload Files
File: /var/www/vhosts/uyarreklam.com.tr/httpdocs/shop_coupon.php.tar
httpdocs/wp-content/plugins/google-listings-and-ads/views/bulk-edit/shop_coupon.php000064400000002472151552152730033123 0ustar00var/www/vhosts/uyarreklam.com.tr<?php
/**
 * Bulk Edit Coupons
 */

use Automattic\WooCommerce\GoogleListingsAndAds\Value\ChannelVisibility;

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly
}

?>

<fieldset class="inline-edit-col-right">
	<div id="google-listings-and-ads-fields-bulk" class="inline-edit-col">

		<div class="inline-edit-group">
			<label class="alignleft">
				<span class="title"><?php esc_html_e( 'Google visibility', 'google-listings-and-ads' ); ?></span>
				<span class="input-text-wrap">
					<select class="change_channel_visibility change_to" name="change_channel_visibility">
						<?php
						$options = [
							'' => __( '— No change —', 'google-listings-and-ads' ),
							ChannelVisibility::SYNC_AND_SHOW => __( 'Show coupon', 'google-listings-and-ads' ),
							ChannelVisibility::DONT_SYNC_AND_SHOW => __( 'Don\'t show coupon', 'google-listings-and-ads' ),
						];
						foreach ( $options as $key => $value ) {
							echo '<option value="' . esc_attr( $key ) . '">' . esc_html( $value ) . '</option>';
						}
						?>
					</select>
				</span>
			</label>
		</div>

		<input type="hidden" name="woocommerce_gla_bulk_edit" value="1" />
		<input type="hidden" name="woocommerce_gla_bulk_edit_nonce" value="<?php echo esc_attr( wp_create_nonce( 'woocommerce_gla_bulk_edit_nonce' ) ); ?>" />
	</div>
</fieldset>