[ SEA-GHOST MINI SHELL]
<?php
class Moesia_Employees extends WP_Widget {
// constructor
function __construct() {
$widget_ops = array('classname' => 'moesia_employees_widget', 'description' => __( 'Display your team members in a stylish way.', 'moesia') );
parent::__construct(false, $name = __('Moesia FP: Employees', 'moesia'), $widget_ops);
$this->alt_option_name = 'moesia_employees_widget';
}
// widget form creation
function form($instance) {
// Check values
$title = isset( $instance['title'] ) ? esc_attr( $instance['title'] ) : '';
$image_uri = isset( $instance['image_uri'] ) ? esc_url_raw( $instance['image_uri'] ) : '';
$number = isset( $instance['number'] ) ? intval( $instance['number'] ) : -1;
$category = isset( $instance['category'] ) ? esc_attr( $instance['category'] ) : '';
$see_all = isset( $instance['see_all'] ) ? esc_url_raw( $instance['see_all'] ) : '';
$see_all_text = isset( $instance['see_all_text'] ) ? esc_html( $instance['see_all_text'] ) : '';
?>
<p><?php _e('In order to display this widget, you must first add some employees from the dashboard. Add as many as you want and the theme will automatically display them all.', 'moesia'); ?></p>
<p>
<label for="<?php echo $this->get_field_id('title'); ?>"><?php _e('Title', 'moesia'); ?></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 $title; ?>" />
</p>
<?php
if ( $image_uri != '' ) :
echo '<p><img class="custom_media_image" src="' . $image_uri . '" style="max-width:100px;" /></p>';
endif;
?>
<p><label for="<?php echo $this->get_field_id('image_uri'); ?>"><?php _e('[DEPRECATED - Go to Edit Row > Theme > Background image] Upload an image for the background if you want. It will get a parallax effect.', 'moesia'); ?></label></p>
<p><input type="button" class="button button-primary custom_media_button" id="custom_media_button" name="<?php echo $this->get_field_name('image_uri'); ?>" value="Upload Image" style="margin-top:5px;" /></p>
<p><input class="widefat custom_media_url" id="<?php echo $this->get_field_id( 'image_uri' ); ?>" name="<?php echo $this->get_field_name( 'image_uri' ); ?>" type="text" value="<?php echo $image_uri; ?>" size="3" /></p>
<p><label for="<?php echo $this->get_field_id( 'number' ); ?>"><?php _e( 'Number of employees to show (-1 shows all of them):', 'moesia' ); ?></label>
<input id="<?php echo $this->get_field_id( 'number' ); ?>" name="<?php echo $this->get_field_name( 'number' ); ?>" type="text" value="<?php echo $number; ?>" size="3" /></p>
<p><label for="<?php echo $this->get_field_id('see_all'); ?>"><?php _e('Enter the URL for your employees page. Useful if you want to show here just a few employees, then send your visitors to a page that uses the employees page template.', 'moesia'); ?></label>
<input class="widefat custom_media_url" id="<?php echo $this->get_field_id( 'see_all' ); ?>" name="<?php echo $this->get_field_name( 'see_all' ); ?>" type="text" value="<?php echo $see_all; ?>" size="3" /></p>
<p><label for="<?php echo $this->get_field_id('see_all_text'); ?>"><?php _e('The text for the button [Defaults to <em>See all our employees</em> if left empty]', 'moesia'); ?></label>
<input class="widefat custom_media_url" id="<?php echo $this->get_field_id( 'see_all_text' ); ?>" name="<?php echo $this->get_field_name( 'see_all_text' ); ?>" type="text" value="<?php echo $see_all_text; ?>" size="3" /></p>
<p><label for="<?php echo $this->get_field_id( 'category' ); ?>"><?php _e( 'Enter the slug for your category or leave empty to show all employees.', 'moesia' ); ?></label>
<input class="widefat" id="<?php echo $this->get_field_id( 'category' ); ?>" name="<?php echo $this->get_field_name( 'category' ); ?>" type="text" value="<?php echo $category; ?>" size="3" /></p>
<?php
}
// update widget
function update($new_instance, $old_instance) {
$instance = $old_instance;
$instance['title'] = strip_tags($new_instance['title']);
$instance['number'] = strip_tags($new_instance['number']);
$instance['image_uri'] = esc_url_raw( $new_instance['image_uri'] );
$instance['see_all'] = esc_url_raw( $new_instance['see_all'] );
$instance['see_all_text'] = strip_tags($new_instance['see_all_text']);
$instance['category'] = strip_tags($new_instance['category']);
$alloptions = wp_cache_get( 'alloptions', 'options' );
if ( isset($alloptions['moesia_employees']) )
delete_option('moesia_employees');
return $instance;
}
// display widget
function widget($args, $instance) {
echo $args['before_widget'];
$cache = array();
if ( ! $this->is_preview() ) {
$cache = wp_cache_get( 'moesia_employees', 'widget' );
}
if ( ! is_array( $cache ) ) {
$cache = array();
}
if ( ! isset( $args['widget_id'] ) ) {
$args['widget_id'] = $this->id;
}
if ( isset( $cache[ $args['widget_id'] ] ) ) {
echo $cache[ $args['widget_id'] ];
return;
}
ob_start();
extract($args);
$title = ( ! empty( $instance['title'] ) ) ? $instance['title'] : __( 'Our Employees', 'moesia' );
$title = apply_filters( 'widget_title', $title, $instance, $this->id_base );
$image_uri = isset( $instance['image_uri'] ) ? esc_url($instance['image_uri']) : '';
$see_all = isset( $instance['see_all'] ) ? esc_url($instance['see_all']) : '';
$see_all_text = isset( $instance['see_all_text'] ) ? esc_html($instance['see_all_text']) : '';
$number = ( ! empty( $instance['number'] ) ) ? intval( $instance['number'] ) : -1;
if ( ! $number )
$number = -1;
$category = isset( $instance['category'] ) ? esc_attr($instance['category']) : '';
$r = new WP_Query( apply_filters( 'widget_posts_args', array(
'no_found_rows' => true,
'post_status' => 'publish',
'post_type' => 'employees',
'posts_per_page' => $number,
'category_name' => $category
) ) );
if ($r->have_posts()) :
?>
<section id="employees" class="employees-area">
<div class="container">
<?php if ( $title ) echo $before_title . '<span class="wow bounce">' . $title . '</span>' . $after_title; ?>
<?php while ( $r->have_posts() ) : $r->the_post(); ?>
<?php //Get the custom field values
$photo = get_post_meta( get_the_ID(), 'wpcf-photo', true );
$position = get_post_meta( get_the_ID(), 'wpcf-position', true );
$facebook = get_post_meta( get_the_ID(), 'wpcf-facebook', true );
$custom_link = get_post_meta( get_the_ID(), 'wpcf-custom-link', true );
$twitter = get_post_meta( get_the_ID(), 'wpcf-twitter', true );
$google = get_post_meta( get_the_ID(), 'wpcf-google-plus', true );
$linkedin = get_post_meta( get_the_ID(), 'wpcf-linkedin', true );
?>
<div class="employee col-md-4 col-sm-6 col-xs-6">
<?php if ($photo != '') : ?>
<?php if ( $custom_link ) : ?>
<a href="<?php echo esc_url($custom_link); ?>"><img class="employee-photo wow zoomInDown" src="<?php echo esc_url($photo); ?>" alt="<?php the_title(); ?>"></a>
<?php else : ?>
<img class="employee-photo wow zoomInDown" src="<?php echo esc_url($photo); ?>" alt="<?php the_title(); ?>">
<?php endif; ?>
<?php elseif ( has_post_thumbnail() ) : ?>
<div class="employee-photo wow zoomInDown">
<?php if ( $custom_link ) : ?>
<a href="<?php echo esc_url($custom_link); ?>"><?php the_post_thumbnail('moesia-employees-thumb'); ?></a>
<?php else : ?>
<?php the_post_thumbnail('moesia-employees-thumb'); ?>
<?php endif; ?>
</div>
<?php endif; ?>
<h4 class="employee-name wow fadeInUp"><?php the_title(); ?></h4>
<?php if ($position != '') : ?>
<span class="employee-position wow fadeInUp"><?php echo esc_html($position); ?></span>
<?php endif; ?>
<div class="employee-desc wow fadeInUp"><?php the_content(); ?></div>
<?php if ( ($facebook != '') || ($twitter != '') || ($google != '') || ($linkedin != '') ) : ?>
<div class="employee-social wow fadeInUp">
<?php if ($facebook != '') : ?>
<a href="<?php echo esc_url($facebook); ?>" target="_blank"><i class="fa fa-facebook"></i></a>
<?php endif; ?>
<?php if ($twitter != '') : ?>
<a href="<?php echo esc_url($twitter); ?>" target="_blank"><i class="fa fa-twitter"></i></a>
<?php endif; ?>
<?php if ($google != '') : ?>
<a href="<?php echo esc_url($google); ?>" target="_blank"><i class="fa fa-google-plus"></i></a>
<?php endif; ?>
<?php if ($linkedin != '') : ?>
<a href="<?php echo esc_url($linkedin); ?>" target="_blank"><i class="fa fa-linkedin"></i></a>
<?php endif; ?>
</div>
<?php endif; ?>
</div>
<?php endwhile; ?>
</div>
<?php if ($see_all != '') : ?>
<a href="<?php echo esc_url($see_all); ?>" class="all-news">
<?php if ($see_all_text) : ?>
<?php echo $see_all_text; ?>
<?php else : ?>
<?php echo __('See all our employees', 'moesia'); ?>
<?php endif; ?>
</a>
<?php endif; ?>
</section>
<?php if ($image_uri != '') : ?>
<style type="text/css">
.employees-area {
display: block;
background: url(<?php echo $image_uri; ?>) no-repeat;
background-position: center top;
background-attachment: fixed;
background-size: cover;
z-index: -1;
}
.employee {
background-color: rgba(0,0,0,0.6);
border-right: 1px solid #5E5E5E;
}
.employee:nth-of-type(3),
.employee:nth-of-type(6),
.employee:nth-of-type(7) {
border-right: 0;
}
</style>
<?php endif; ?>
<?php
// Reset the global $the_post as this query will have stomped on it
wp_reset_postdata();
endif;
if ( ! $this->is_preview() ) {
$cache[ $args['widget_id'] ] = ob_get_flush();
wp_cache_set( 'moesia_employees', $cache, 'widget' );
} else {
ob_end_flush();
}
echo $args['after_widget'];
}
}
SEA-GHOST - SHELL CODING BY SEA-GHOST