File: /home/grainesdfo/www/wp-content/plugins/jupiterx-core/includes/popups/conditions/author.php
<?php
namespace JupiterX_Core\Popup\Conditions;
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly
}
class Author extends Conditions_Base {
/**
* Get condition type.
*
* @since 3.7.0
* @return string
*/
public function get_type() {
return 'archive';
}
/**
* Get condition name.
*
* @since 3.7.0
* @return string
*/
public function get_name() {
return 'author';
}
/**
* Get condition label.
*
* @since 3.7.0
* @return string
*/
public function get_label() {
return esc_html__( 'Author Archive', 'jupiterx-core' );
}
/**
* Validate condition in frontend.
*
* @param array $args condition saved arguments to validate.
* @since 3.7.0
* @return boolean
*/
public function is_valid( $args = null ) {
return is_author( $args['id']['value'] );
}
/**
* Get options for conditions with search control.
*
* @since 3.7.0
* @return string
*/
public function get_options( $value ) {
$query_args = [ 'search' => '*' . sanitize_text_field( $value ) . '*' ];
$user_query = new \WP_User_Query( $query_args );
$results = [];
foreach ( $user_query->get_results() as $user ) {
$results[] = [
'id' => $user->ID,
'name' => $user->data->display_name,
];
}
return $results;
}
}