# sellkit/1.7.4/includes/contact-segmentation/operators/operator-base.php

SellKit – Funnel builder and checkout optimizer for WooCommerce to sell more, faster, version 1.7.4. 48 lines.

- Page: https://pluginprobe.com/plugins/sellkit/1.7.4/code/includes/contact-segmentation/operators/operator-base.php
- Raw: https://pluginprobe.com/plugins/sellkit/1.7.4/raw/includes/contact-segmentation/operators/operator-base.php
- Modified: 2023-08-16T09:31:38+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/sellkit/1.7.4/code/includes/contact-segmentation/operators/operator-base.php#L10-L20`.

```php
<?php

namespace Sellkit\Contact_Segmentation;

defined( 'ABSPATH' ) || die();

/**
 * Class Operators.
 *
 * @package Sellkit\Contact_Segmentation\Base.
 * @since 1.1.0
 */
abstract class Operator_Base {

	/**
	 * Get title.
	 *
	 * @since 1.1.0
	 * @return string
	 */
	abstract public function get_title();

	/**
	 * Get name.
	 *
	 * @since 1.1.0
	 * @return string
	 */
	abstract public function get_name();

	/**
	 * Get conditions.
	 *
	 * @since 1.1.0
	 * @return string
	 */
	abstract public function get_conditions();

	/**
	 * Condition title.
	 *
	 * @since 1.1.0
	 * @param mixed $value      The value of current value.
	 * @param mixed $condition_value The value of condition input.
	 */
	abstract public function is_valid( $value, $condition_value );
}

```
