74 lines
2.1 KiB
PHP
74 lines
2.1 KiB
PHP
<?php
|
|
/**
|
|
* Placeholder class that handles conditional logic based on location.
|
|
*
|
|
* @package WPCode
|
|
*/
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit;
|
|
}
|
|
|
|
|
|
/**
|
|
* The WPCode_Conditional_Location class.
|
|
*/
|
|
class WPCode_Conditional_Location_Lite extends WPCode_Conditional_Type {
|
|
|
|
/**
|
|
* The type unique name (slug).
|
|
*
|
|
* @var string
|
|
*/
|
|
public $name = 'location';
|
|
|
|
/**
|
|
* The type category.
|
|
*
|
|
* @var string
|
|
*/
|
|
public $category = 'who';
|
|
|
|
/**
|
|
* Set the type options for the admin mainly.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function load_type_options() {
|
|
$this->options = array(
|
|
'country' => array(
|
|
'label' => __( 'Country', 'insert-headers-and-footers' ),
|
|
'description' => __( 'Limit loading the snippet based on the visitor\'s country.', 'insert-headers-and-footers' ),
|
|
'type' => 'select',
|
|
'options' => array(),
|
|
'upgrade' => array(
|
|
'title' => __( 'Location Rules are a Pro Feature', 'insert-headers-and-footers' ),
|
|
'text' => __( 'Get access to location-based conditional logic rules by upgrading to PRO today.', 'insert-headers-and-footers' ),
|
|
'link' => wpcode_utm_url( 'https://wpcode.com/lite/', 'edit-snippet', 'conditional-logic', 'location-country' ),
|
|
),
|
|
),
|
|
'continent' => array(
|
|
'label' => __( 'Continent', 'insert-headers-and-footers' ),
|
|
'description' => __( 'Target entire continents with ease.', 'insert-headers-and-footers' ),
|
|
'type' => 'select',
|
|
'options' => array(),
|
|
'upgrade' => array(
|
|
'title' => __( 'Location Rules are a Pro Feature', 'insert-headers-and-footers' ),
|
|
'text' => __( 'Get access to location-based conditional logic rules by upgrading to PRO today.', 'insert-headers-and-footers' ),
|
|
'link' => wpcode_utm_url( 'https://wpcode.com/lite/', 'edit-snippet', 'conditional-logic', 'location-continent' ),
|
|
),
|
|
),
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Set the translatable label.
|
|
*
|
|
* @return void
|
|
*/
|
|
protected function set_label() {
|
|
$this->label = __( 'Location', 'insert-headers-and-footers' ) . ' (PRO)';
|
|
}
|
|
}
|
|
|
|
new WPCode_Conditional_Location_Lite();
|