# sequra/4.0.0/src/Services/Settings/interface-settings-service.php

seQura, version 4.0.0. 31 lines.

- Page: https://pluginprobe.com/plugins/sequra/4.0.0/code/src/Services/Settings/interface-settings-service.php
- Raw: https://pluginprobe.com/plugins/sequra/4.0.0/raw/src/Services/Settings/interface-settings-service.php
- Modified: 2025-10-21T08:30:24+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/sequra/4.0.0/code/src/Services/Settings/interface-settings-service.php#L10-L20`.

```php
<?php
/**
 * Settings Service Interface
 * 
 * @package    SeQura/WC
 * @subpackage SeQura/WC/Services
 */

namespace SeQura\WC\Services\Service;

/**
 * Settings Service Interface
 */
interface Interface_Settings_Service {

	/**
	 * Check if the current page is the settings page.
	 */
	public function is_settings_page(): bool;

	/**
	 * Get the configuration page slug.
	 */
	public function get_page(): string;

	/**
	 * Get the configuration page parent slug.
	 */
	public function get_parent_page(): string;
}

```
