114 lines
2.7 KiB
PHP
114 lines
2.7 KiB
PHP
<?php
|
|
/**
|
|
* Class that handles conditional logic related to users.
|
|
*
|
|
* @package WPCode
|
|
*/
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit;
|
|
}
|
|
|
|
/**
|
|
* The WPCode_Conditional_User class.
|
|
*/
|
|
class WPCode_Conditional_User extends WPCode_Conditional_Type {
|
|
|
|
/**
|
|
* The type unique name (slug).
|
|
*
|
|
* @var string
|
|
*/
|
|
public $name = 'user';
|
|
|
|
/**
|
|
* The category of this type.
|
|
*
|
|
* @var string
|
|
*/
|
|
public $category = 'who';
|
|
|
|
/**
|
|
* Set the translatable label.
|
|
*
|
|
* @return void
|
|
*/
|
|
protected function set_label() {
|
|
$this->label = __( 'User', 'insert-headers-and-footers' );
|
|
}
|
|
|
|
/**
|
|
* Set the type options for the admin mainly.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function load_type_options() {
|
|
$this->options = array(
|
|
'logged_in' => array(
|
|
'label' => __( 'Logged-in', 'insert-headers-and-footers' ),
|
|
'description' => __( 'Check if your site visitor is logged in.', 'insert-headers-and-footers' ),
|
|
'type' => 'select',
|
|
'options' => array(
|
|
array(
|
|
'label' => __( 'True', 'insert-headers-and-footers' ),
|
|
'value' => true,
|
|
),
|
|
array(
|
|
'label' => __( 'False', 'insert-headers-and-footers' ),
|
|
'value' => false,
|
|
),
|
|
),
|
|
'callback' => 'is_user_logged_in',
|
|
),
|
|
'user_role' => array(
|
|
'label' => __( 'User Role', 'insert-headers-and-footers' ),
|
|
'description' => __( 'Target a specific user role.', 'insert-headers-and-footers' ),
|
|
'type' => 'select',
|
|
'options' => $this->get_options_user_roles(),
|
|
'callback' => array( $this, 'get_user_role' ),
|
|
),
|
|
'user_meta' => array(
|
|
'label' => __( 'User Meta', 'insert-headers-and-footers') . ' (PRO)' ,
|
|
'description' => __( 'Target users based on user meta values.', 'insert-headers-and-footers' ),
|
|
'type' => 'text',
|
|
'options' => array(),
|
|
'upgrade' => array(
|
|
'title' => __( 'User Meta is a Pro Feature', 'insert-headers-and-footers' ),
|
|
'text' => __( 'Get access to User Meta conditional logic rules by upgrading to PRO today.', 'insert-headers-and-footers' ),
|
|
'link' => wpcode_utm_url( 'https://wpcode.com/lite/', 'edit-snippet', 'conditional-logic', 'user-meta' ),
|
|
),
|
|
),
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Get a list of options for user roles.
|
|
*
|
|
* @return array
|
|
*/
|
|
protected function get_options_user_roles() {
|
|
$user_roles = wp_roles()->roles;
|
|
$options = array();
|
|
foreach ( $user_roles as $key => $role ) {
|
|
$options[] = array(
|
|
'label' => $role['name'],
|
|
'value' => $key,
|
|
);
|
|
}
|
|
|
|
return $options;
|
|
}
|
|
|
|
/**
|
|
* Get an array of user roles for the current user.
|
|
*
|
|
* @return string[]
|
|
*/
|
|
public function get_user_role() {
|
|
$user = wp_get_current_user();
|
|
|
|
return $user->roles;
|
|
}
|
|
}
|
|
|
|
new WPCode_Conditional_User();
|