Your IP : 3.128.205.137


Current Path : /home/church/www/offwins.com/wp-content/themes/envo-magazine/includes/widgets/
Upload File :
Current File : /home/church/www/offwins.com/wp-content/themes/envo-magazine/includes/widgets/mix-column-news.php

<?php
/**
 * Custom widgets.
 *
 * @package PT_Magazine
 */
if ( !class_exists( 'envo_magazine_Mix_Column_News' ) ) :

	/**
	 * Two Column News widget class.
	 *
	 * @since 1.0.0
	 */
	class envo_magazine_Mix_Column_News extends WP_Widget {

		function __construct() {
			$opts = array(
				'classname'		 => 'mix-news-section',
				'description'	 => esc_html__( 'Widget to display news in mix columns layout. First post in full column and other in two columns', 'envo-magazine' ),
			);

			parent::__construct( 'envo-magazine-mix-column-news', esc_html__( 'Envo Magazine: Mix Column News', 'envo-magazine' ), $opts );
		}

		function widget( $args, $instance ) {

			$title = apply_filters( 'widget_title', empty( $instance[ 'title' ] ) ? '' : $instance[ 'title' ], $instance, $this->id_base );

			$mix_category = !empty( $instance[ 'mix_category' ] ) ? $instance[ 'mix_category' ] : 0;

			$view_all_text = !empty( $instance[ 'view_all_text' ] ) ? $instance[ 'view_all_text' ] : '';

			$excerpt_length = !empty( $instance[ 'excerpt_length' ] ) ? $instance[ 'excerpt_length' ] : 40;

			$excerpt_length_small = !empty( $instance[ 'excerpt_length_small' ] ) ? $instance[ 'excerpt_length_small' ] : 20;

			$post_number = !empty( $instance[ 'post_number' ] ) ? $instance[ 'post_number' ] : 3;

			echo $args[ 'before_widget' ];
			?>

			<div class="mix-col-section">

				<div class="section-title">

					<?php
					if ( !empty( $title ) ) {
						echo $args[ 'before_title' ] . esc_html( $title ) . $args[ 'after_title' ];
					}
					$mix_category = envo_magazine_check_cat( $mix_category );
					if ( !empty( $view_all_text ) ) {
						$page_for_posts = get_option( 'page_for_posts' );
						if ( absint( $mix_category ) > 0 ) {

							$cat_link = get_category_link( $mix_category );
						} elseif ( isset( $page_for_posts ) && ( $page_for_posts != '' ) && ( $page_for_posts != '0' ) ) {

							$cat_link = get_permalink( $page_for_posts );
						} else {

							$cat_link = '';
						}
						if ( !empty( $cat_link ) ) {
							?>

							<a href="<?php echo esc_url( $cat_link ); ?>"><?php echo esc_html( $view_all_text ); ?></a>

							<?php
						}
					}
					?>

				</div>

				<div class="inner-wrapper row">
					<?php
					$mix_args = array(
						'posts_per_page'		 => absint( $post_number ),
						'no_found_rows'			 => true,
						'post__not_in'			 => get_option( 'sticky_posts' ),
						'ignore_sticky_posts'	 => true,
					);

					if ( absint( $mix_category ) > 0 ) {

						$mix_args[ 'cat' ] = absint( $mix_category );
					}


					$mix_posts = new WP_Query( $mix_args );

					if ( $mix_posts->have_posts() ) :

						$mix_col_count = 1;

						while ( $mix_posts->have_posts() ) :

							$mix_posts->the_post();

							if ( 1 === $mix_col_count ) {
								?>

								<div class="news-item col-md-12">
									<?php envo_magazine_thumb_img( 'envo-magazine-single' ); ?>
									<?php envo_magazine_widget_date_comments(); ?>
									<div class="news-text-wrap first-wrap">
										<?php envo_magazine_the_title(); ?>

										<?php envo_magazine_author_meta(); ?>
										<div class="post-excerpt">
											<?php
											$first_content = envo_magazine_get_the_excerpt( absint( $excerpt_length ) );
											echo wp_kses_post( $first_content ) ? wp_kses_post( wpautop( $first_content ) ) : '';
											?>
										</div><!-- .post-excerpt -->

									</div><!-- .news-text-wrap -->
								</div><!-- .news-item -->

							<?php } else { ?>

								<div class="news-item col-md-6">
									<?php envo_magazine_thumb_img( 'envo-magazine-med' ); ?>
									<?php envo_magazine_widget_date_comments(); ?>
									<div class="news-text-wrap first-wrap">
										<?php envo_magazine_the_title(); ?>

										<?php envo_magazine_author_meta(); ?>
										<div class="post-excerpt">
											<?php
											$second_content = envo_magazine_get_the_excerpt( absint( $excerpt_length_small ) );
											echo wp_kses_post( $second_content ) ? wp_kses_post( wpautop( $second_content ) ) : '';
											?>
										</div><!-- .post-excerpt -->
										
									</div><!-- .news-text-wrap -->
								</div><!-- .news-item -->

								<?php
							}

							$mix_col_count++;

						endwhile;

						wp_reset_postdata();
						?>

					<?php endif; ?>
				</div><!-- .inner-wrapper -->

			</div><!-- .mix-column-news -->

			<?php
			echo $args[ 'after_widget' ];
		}

		function update( $new_instance, $old_instance ) {
			$instance							 = $old_instance;
			$instance[ 'title' ]				 = sanitize_text_field( $new_instance[ 'title' ] );
			$instance[ 'mix_category' ]			 = absint( $new_instance[ 'mix_category' ] );
			$instance[ 'view_all_text' ]		 = sanitize_text_field( $new_instance[ 'view_all_text' ] );
			$instance[ 'excerpt_length' ]		 = absint( $new_instance[ 'excerpt_length' ] );
			$instance[ 'excerpt_length_small' ]	 = absint( $new_instance[ 'excerpt_length_small' ] );
			$instance[ 'post_number' ]			 = absint( $new_instance[ 'post_number' ] );

			return $instance;
		}

		function form( $instance ) {

			$instance	 = wp_parse_args( (array) $instance, array(
				'title'					 => '',
				'mix_category'			 => '',
				'view_all_text'			 => esc_html__( 'View All', 'envo-magazine' ),
				'excerpt_length'		 => 40,
				'excerpt_length_small'	 => 20,
				'post_number'			 => 3,
			) );
			?>

			<p>
				<label for="<?php echo esc_attr( $this->get_field_id( 'title' ) ); ?>"><?php esc_html_e( 'Title:', 'envo-magazine' ); ?></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( 'mix_category' ) ); ?>"><strong><?php esc_html_e( 'Category:', 'envo-magazine' ); ?></strong></label>
				<?php
				$cat_args	 = array(
					'orderby'			 => 'name',
					'hide_empty'		 => 0,
					'class'				 => 'widefat',
					'taxonomy'			 => 'category',
					'name'				 => $this->get_field_name( 'mix_category' ),
					'id'				 => $this->get_field_id( 'mix_category' ),
					'selected'			 => absint( $instance[ 'mix_category' ] ),
					'show_option_all'	 => esc_html__( 'All Categories', 'envo-magazine' ),
				);
				wp_dropdown_categories( $cat_args );
				?>
			</p>

			<p>
				<label for="<?php echo esc_attr( $this->get_field_id( 'view_all_text' ) ); ?>"><strong><?php esc_html_e( 'View all text:', 'envo-magazine' ); ?></strong></label>
				<input class="widefat" id="<?php echo esc_attr( $this->get_field_id( 'view_all_text' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'view_all_text' ) ); ?>" type="text" value="<?php echo esc_attr( $instance[ 'view_all_text' ] ); ?>" />
				<small>
					<?php esc_html_e( 'To hide it, leave this field empty.', 'envo-magazine' ); ?>   
				</small>
			</p>

			<p>
				<label for="<?php echo esc_attr( $this->get_field_name( 'excerpt_length' ) ); ?>">
					<?php esc_html_e( 'First excerpt length:', 'envo-magazine' ); ?>
				</label>
				<input class="widefat" id="<?php echo esc_attr( $this->get_field_id( 'excerpt_length' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'excerpt_length' ) ); ?>" type="number" value="<?php echo absint( $instance[ 'excerpt_length' ] ); ?>" />
			</p>

			<p>
				<label for="<?php echo esc_attr( $this->get_field_name( 'excerpt_length_small' ) ); ?>">
					<?php esc_html_e( 'Small posts excerpt length:', 'envo-magazine' ); ?>
				</label>
				<input class="widefat" id="<?php echo esc_attr( $this->get_field_id( 'excerpt_length_small' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'excerpt_length_small' ) ); ?>" type="number" value="<?php echo absint( $instance[ 'excerpt_length_small' ] ); ?>" />
			</p>

			<p>
				<label for="<?php echo esc_attr( $this->get_field_id( 'post_number' ) ); ?>"><strong><?php esc_html_e( 'Number of posts:', 'envo-magazine' ); ?></strong></label>
				<?php
				$this->dropdown_post_number( array(
					'id'		 => $this->get_field_id( 'post_number' ),
					'name'		 => $this->get_field_name( 'post_number' ),
					'selected'	 => absint( $instance[ 'post_number' ] ),
				)
				);
				?>
			</p>

			<?php
		}

		function dropdown_post_number( $args ) {
			$defaults = array(
				'id'		 => '',
				'name'		 => '',
				'selected'	 => 0,
			);

			$r		 = wp_parse_args( $args, $defaults );
			$output	 = '';

			$choices = array(
				'3'	 => 3,
				'5'	 => 5,
				'7'	 => 7,
			);

			if ( !empty( $choices ) ) {

				$output = "<select name='" . esc_attr( $r[ 'name' ] ) . "' id='" . esc_attr( $r[ 'id' ] ) . "'>\n";
				foreach ( $choices as $key => $choice ) {
					$output .= '<option value="' . esc_attr( $key ) . '" ';
					$output .= selected( $r[ 'selected' ], $key, false );
					$output .= '>' . esc_html( $choice ) . '</option>\n';
				}
				$output .= "</select>\n";
			}

			echo $output;
		}

	}

	

	

	

	

	

endif;