PATH:
var
/
www
/
vhosts
/
sandbox.dos-group.com
/
httpdocs
/
medifides
/
wp-content
/
themes
/
redbiz
/
widgets
<?php class Themesflat_Recent_Post extends WP_Widget { /** * Holds widget settings defaults, populated in constructor. * * @var array */ protected $defaults; /** * Constructor * * @return Themesflat_Recent_Post */ function __construct() { $this->defaults = array( 'title' => 'Recent Post', 'category' => '', 'style' => 'style1', 'ids' => '', 'count' => 4, 'show_thumbnail' => true, 'show_content' => false, 'show_date' => true ); parent::__construct( 'widget_recent_post', esc_html__( 'themesflat - Recent Post', 'redbiz' ), array( 'classname' => 'widget-recent-news', 'description' => esc_html__( 'Recent Post.', 'redbiz' ) ) ); } /** * Display widget */ function widget( $args, $instance ) { $instance = wp_parse_args( $instance, $this->defaults ); extract( $instance ); extract( $args ); $query_args = array( 'post_type' => 'post', 'posts_per_page' => intval($count) ); if ( !empty( $category ) ) $query_args['tax_query'] = array( array( 'taxonomy' => 'category', 'terms' => $category, ), ); if ($ids != '') { $query_args['post__in'] = explode(",",$ids); $query_args['orderby'] = 'post__in'; } $flat_post = new WP_Query( $query_args ); $classes[] = 'recent-news'; $classes[] = $show_thumbnail != 1 ? 'no-thumbnail' : ''; $classes[] = $style; echo wp_kses_post( $before_widget ); if ( !empty($title) ) { echo wp_kses_post( $before_title ).esc_html($title).wp_kses_post( $after_title); } ?> <ul class="<?php echo esc_attr(implode(' ', $classes)) ;?> clearfix"> <?php if ( $flat_post->have_posts() ) : ?> <?php while ( $flat_post->have_posts() ) : $flat_post->the_post(); ?> <li> <?php if ( has_post_thumbnail() && $show_thumbnail == 1) : ?> <div class="thumb"> <span class="overlay-pop"></span> <a href="<?php the_permalink(); ?>"> <?php the_post_thumbnail( 'themesflat-recent-news-thumb'); ?> </a> </div> <?php endif; ?> <div class="text"> <p class="date-1"><time class="date updated" datetime="<?php esc_attr(the_time( 'c' )); ?>"><?php the_time( 'F d, Y' ); ?></time></p> <?php the_title( sprintf( '<h4><a href="%s" rel="bookmark">', esc_url( get_permalink() ) ), '</a></h4>' ); ?> <?php if ( $show_content ) : ?> <p><?php echo wp_trim_words( get_the_content(), 8, '...' ); ?></p> <?php endif; ?> <?php if ( $show_date ) : ?> <p class="date-2"><time class="date updated" datetime="<?php esc_attr(the_time( 'c' )); ?>"><?php the_time( 'F d, Y' ); ?></time></p> <?php endif; ?> </div><!-- /.text --> </li> <?php endwhile; ?> <?php wp_reset_postdata(); ?> <?php else : ?> <?php printf( '<li>%s</li>',esc_html__('Oops, category not found.', 'redbiz' )); ?> <?php endif; ?> </ul> <?php echo wp_kses_post( $after_widget ); } /** * Update widget */ function update( $new_instance, $old_instance ) { $instance = $old_instance; $instance['title'] = strip_tags( $new_instance['title'] ); $instance['ids'] = ( $new_instance['ids'] ); $instance['style'] = ($new_instance['style']); $instance['count'] = intval($new_instance['count']); $instance['show_thumbnail'] = (bool) $new_instance['show_thumbnail'] ; $instance['show_date'] = isset( $new_instance['show_date'] ) ? (bool) $new_instance['show_date'] : false; $instance['show_content'] = isset( $new_instance['show_content'] ) ? (bool) $new_instance['show_content'] : false; $instance['category'] = array_filter( $new_instance['category'] ); return $instance; } /** * Widget setting */ function form( $instance ) { $instance = wp_parse_args( $instance, $this->defaults ); $show_content = $instance['show_content'] ? "checked" : ""; $show_content = isset( $instance['show_content'] ) ? (bool) $instance['show_content'] : false; $show_thumbnail = isset( $instance['show_thumbnail'] ) ? (bool) $instance['show_thumbnail'] : true; $show_date = $instance['show_date'] ? "checked" : ""; $show_date = isset( $instance['show_date'] ) ? (bool) $instance['show_date'] : false; if (empty($instance['category'])) { $instance['category'] = array("1"); } ?> <p> <label for="<?php echo esc_attr( $this->get_field_id( 'title' ) ); ?>"><?php esc_html_e( 'Title:', 'redbiz' ); ?></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( $instance['title'] ); ?>"> </p> <p> <label for="<?php echo esc_attr( $this->get_field_id( 'category' ) ); ?>"><?php esc_html_e( 'Select Category:', 'redbiz' ); ?></label> <select class="widefat" id="<?php echo esc_attr( $this->get_field_id( 'category' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'category' ) ); ?>[]"> <option value=""<?php selected( empty( $instance['category'] ) ); ?>><?php esc_html_e( 'All', 'redbiz' ); ?></option> <?php $categories = get_categories(); foreach ($categories as $category) { printf('<option value="%1$s" %4$s>%2$s (%3$s)</option>', esc_attr($category->term_id), esc_attr($category->name), esc_attr($category->count), (in_array($category->term_id, $instance['category'] )) ? 'selected="selected"' : ''); } ?> </select> </p> <?php $styles = array( 'style1' => esc_html__('Style 1','redbiz'), 'style2' => esc_html__('Style 2','redbiz'), ); ?> <p> <label for="<?php echo esc_attr( $this->get_field_id( 'style' ) ); ?>"><?php esc_html_e( 'Select style:', 'redbiz' ); ?></label> <select class="widefat" id="<?php echo esc_attr( $this->get_field_id( 'style' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'style' ) ); ?>"> <?php foreach ($styles as $key => $style) { printf('<option value="%1$s" %3$s>%2$s</option>', esc_attr($key), esc_attr($style),($key == $instance['style'] ? 'selected="selected"' : '')); } ?> </select> </p> <p> <label for="<?php echo esc_attr( $this->get_field_id( 'ids' ) ); ?>"><?php esc_html_e( 'Get Post by IDS EX:1,2,3', 'redbiz' ); ?></label> <input class="widefat" id="<?php echo esc_attr( $this->get_field_id( 'ids' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'ids' ) ); ?>" type="text" value="<?php echo esc_attr( $instance['ids'] ); ?>"> </p> <p> <label for="<?php echo esc_attr( $this->get_field_id( 'count' ) ); ?>"><?php esc_html_e( 'Count:', 'redbiz' ); ?></label> <input class="widefat" type="number" id="<?php echo esc_attr( $this->get_field_id( 'count' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'count' ) ); ?>" value="<?php echo esc_attr( $instance['count'] ); ?>"> </p> <p> <input class="checkbox" type="checkbox" <?php checked( $show_thumbnail ); ?> id="<?php echo esc_attr( $this->get_field_id( 'show_thumbnail' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'show_thumbnail' ) ); ?>" /> <label for="<?php echo esc_attr( $this->get_field_id( 'show_thumbnail' ) ); ?>"><?php esc_html_e( 'Show Thumbnail ?', 'redbiz' ) ?></label> </p> <p> <input class="checkbox" type="checkbox" <?php checked( $show_content ); ?> id="<?php echo esc_attr( $this->get_field_id( 'show_content' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'show_content' ) ); ?>" /> <label for="<?php echo esc_attr( $this->get_field_id( 'show_content' ) ); ?>"><?php esc_html_e( 'Show Content ?', 'redbiz' ) ?></label> </p> <p> <input class="checkbox" type="checkbox" <?php checked( $show_date ); ?> id="<?php echo esc_attr( $this->get_field_id( 'show_date' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'show_date' ) ); ?>" /> <label for="<?php echo esc_attr( $this->get_field_id( 'show_date' ) ); ?>"><?php esc_html_e( 'Show Date ?', 'redbiz' ); ?></label> </p> <?php } } add_action( 'widgets_init', 'themesflat_register_recent_post' ); /** * Register widget * * @return void * @since 1.0 */ function themesflat_register_recent_post() { register_widget( 'Themesflat_Recent_Post' ); }
[-] themesflat_testimonial.php
[open]
[+]
..
[-] themesflat_recent_post.php
[open]
[-] themesflat_categories.php
[open]
[-] themesflat_contact_us.php
[open]