1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209
<?php
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
class EPL_Widget_Author extends WP_Widget {
public function __construct() {
parent::__construct( false, $name = esc_html__( 'EPL - Author', 'easy-property-listings' ), array( 'description' => esc_html__( 'Add an Author profile to a sidebar.', 'easy-property-listings' ) ) );
}
public function widget( $args, $instance ) {
$defaults = array(
'title' => '',
'username' => '',
'display' => 0,
'd_image' => 0,
'd_icons' => 0,
'd_bio' => 0,
);
$instance = wp_parse_args( (array) $instance, $defaults );
foreach ( $args as $arg_key => $arg_val ) {
${$arg_key} = $arg_val;
}
$title = apply_filters( 'widget_title', $instance['title'] );
$username = esc_attr( $instance['username'] );
$display = esc_attr( $instance['display'] );
$d_image = esc_attr( $instance['d_image'] );
$d_icons = esc_attr( $instance['d_icons'] );
$d_bio = esc_attr( $instance['d_bio'] );
if ( is_epl_post_single() ) {
global $property;
$hide_author_box = $property->get_property_meta( 'property_agent_hide_author_box' );
$author_box = apply_filters( 'epl_widget_author_hide_widget', 'off' );
if ( 'yes' === $hide_author_box && 'on' === $author_box ) {
} else {
echo $before_widget;
if ( $title ) {
echo $before_title . esc_html( $title ) . $after_title;
}
epl_property_author_box_simple_card_tall( $instance['d_image'], $instance['d_icons'], $instance['d_bio'], $instance['username'] );
echo $after_widget;
}
} else {
echo $before_widget;
if ( $title ) {
echo $before_title . esc_html( $title ) . $after_title;
}
epl_property_author_box_simple_card_tall( $instance['d_image'], $instance['d_icons'], $instance['d_bio'], $instance['username'] );
echo $after_widget;
}
}
public function update( $new_instance, $old_instance ) {
$instance = $old_instance;
$all_fields = array( 'title', 'username', 'display', 'd_image', 'd_icons', 'd_bio' );
foreach ( $all_fields as $all_field ) {
if ( isset( $new_instance[ $all_field ] ) ) {
$instance[ $all_field ] = epl_strip_tags( $new_instance[ $all_field ] );
} else {
$instance[ $all_field ] = '';
}
}
return $instance;
}
public function form( $instance ) {
$defaults = array(
'title' => '',
'username' => '',
'display' => 0,
'd_image' => 0,
'd_icons' => 0,
'd_bio' => 0,
);
$instance = wp_parse_args( (array) $instance, $defaults );
$title = esc_attr( $instance['title'] );
$username = esc_attr( $instance['username'] );
$display = esc_attr( $instance['display'] );
$d_image = esc_attr( $instance['d_image'] );
$d_icons = esc_attr( $instance['d_icons'] );
$d_bio = esc_attr( $instance['d_bio'] ); ?>
<p>
<label for="<?php echo esc_attr( $this->get_field_id( 'title' ) ); ?>"><?php esc_html_e( 'Title:', 'easy-property-listings' ); ?></label>
<input class="widefat" id="<?php echo esc_attr( $this->get_field_id( 'title' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'title' ) ); ?>" type="text" value="<?php echo esc_attr( $title ); ?>" />
</p>
<p>
<label for="<?php echo esc_attr( $this->get_field_id( 'username' ) ); ?>"><?php esc_html_e( 'Username:', 'easy-property-listings' ); ?></label>
<input autocomplete="off" class="widefat epl-widget-author-username" id="<?php echo esc_attr( $this->get_field_id( 'username' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'username' ) ); ?>" type="text" value="<?php echo esc_attr( $username ); ?>" placeholder="<?php esc_html_e( 'Type to search users', 'easy-property-listings' ); ?>"/>
<span class="help"><?php esc_html_e( 'Search for users, supports multiple', 'easy-property-listings' ); ?></span>
</p>
<p>
<input type="checkbox" id="<?php echo esc_attr( $this->get_field_id( 'd_image' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'd_image' ) ); ?>"
<?php
if ( $instance['d_image'] ) {
echo 'checked="checked"';}
?>
/>
<label for="<?php echo esc_attr( $this->get_field_id( 'd_image' ) ); ?>"><?php esc_html_e( 'Display Author Gravatar', 'easy-property-listings' ); ?></label>
</p>
<p>
<input type="checkbox" id="<?php echo esc_attr( $this->get_field_id( 'd_icons' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'd_icons' ) ); ?>"
<?php
if ( $instance['d_icons'] ) {
echo 'checked="checked"';}
?>
/>
<label for="<?php echo esc_attr( $this->get_field_id( 'd_icons' ) ); ?>"><?php esc_html_e( 'Display Icons', 'easy-property-listings' ); ?></label>
</p>
<p>
<input type="checkbox" id="<?php echo esc_attr( $this->get_field_id( 'd_bio' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'd_bio' ) ); ?>"
<?php
if ( $instance['d_bio'] ) {
echo 'checked="checked"';}
?>
/>
<label for="<?php echo esc_attr( $this->get_field_id( 'd_bio' ) ); ?>"><?php esc_html_e( 'Display Bio', 'easy-property-listings' ); ?></label>
</p>
<?php
}
}
function epl_register_widget_author() {
register_widget( 'EPL_Widget_Author' );
}
add_action( 'widgets_init', 'epl_register_widget_author' );