# woocommerce-pos/1.10.3/includes/Services/Settings/Tools_Section.php

WCPOS – Point of Sale (POS) plugin for WooCommerce, version 1.10.3. 30 lines.

- Page: https://pluginprobe.com/plugins/woocommerce-pos/1.10.3/code/includes/Services/Settings/Tools_Section.php
- Raw: https://pluginprobe.com/plugins/woocommerce-pos/1.10.3/raw/includes/Services/Settings/Tools_Section.php
- Modified: 2026-08-25T07:52:20+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/woocommerce-pos/1.10.3/code/includes/Services/Settings/Tools_Section.php#L10-L20`.

```php
<?php
/**
 * Tools Settings Section.
 *
 * @package WCPOS\WooCommercePOS
 */

namespace WCPOS\WooCommercePOS\Services\Settings;

/**
 * The Tools Settings Section: developer/support toggles.
 */
class Tools_Section extends Abstract_Section {
	/**
	 * Section id.
	 */
	public function id(): string {
		return 'tools';
	}

	/**
	 * Section defaults.
	 */
	public function defaults(): array {
		return array(
			'use_jwt_as_param' => false,
		);
	}
}

```
