File: /var/www/html/wp-content/plugins/ultimate-member/includes/widgets/class-um-search-widget.php
<?php
namespace um\widgets;
// Exit if accessed directly
if ( ! defined( 'ABSPATH' ) ) exit;
/**
* Class UM_Search_Widget
* @package um\widgets
*/
class UM_Search_Widget extends \WP_Widget {
/**
* UM_Search_Widget constructor.
*/
function __construct() {
parent::__construct(
// Base ID of your widget
'um_search_widget',
// Widget name will appear in UI
__('Ultimate Member - Search', 'ultimate-member'),
// Widget description
array( 'description' => __( 'Shows the search member form.', 'ultimate-member' ), )
);
}
/**
* Creating widget front-end
*
* @param array $args
* @param array $instance
*/
public function widget( $args, $instance ) {
$title = apply_filters( 'widget_title', $instance['title'] );
// before and after widget arguments are defined by themes
echo $args['before_widget'];
if ( ! empty( $title ) ) {
echo $args['before_title'] . $title . $args['after_title'];
}
// display the search form
um_search_form();
echo $args['after_widget'];
}
/**
* Widget Backend
*
* @param array $instance
*/
public function form( $instance ) {
if ( isset( $instance[ 'title' ] ) ) {
$title = $instance[ 'title' ];
} else {
$title = __( 'Search Users', 'ultimate-member' );
}
if ( isset( $instance[ 'max' ] ) ) {
$max = $instance[ 'max' ];
} else {
$max = 11;
}
// Widget admin form
?>
<p>
<label for="<?php echo $this->get_field_id( 'title' ); ?>"><?php _e( 'Title:' ); ?></label>
<input class="widefat" id="<?php echo $this->get_field_id( 'title' ); ?>" name="<?php echo $this->get_field_name( 'title' ); ?>" type="text" value="<?php echo esc_attr( $title ); ?>" />
</p>
<?php
}
/**
* Updating widget replacing old instances with new
*
* @param array $new_instance
* @param array $old_instance
*
* @return array
*/
public function update( $new_instance, $old_instance ) {
$instance = array();
$instance['title'] = ( ! empty( $new_instance['title'] ) ) ? strip_tags( $new_instance['title'] ) : '';
return $instance;
}
}