Opal-Estate-Pro/inc/widgets/featured-properties.php
2019-09-10 11:27:33 +07:00

84 lines
2.8 KiB
PHP
Executable File

<?php
/**
* $Desc
*
* @version $Id$
* @package wpbase
* @author Team <info@wpopal.com >
* @copyright Copyright (C) 2019 wpopal.com. All Rights Reserved.
* @license GNU/GPL v2 or later http://www.gnu.org/licenses/gpl-2.0.html
*
* @website http://www.wpopal.com
* @support http://www.wpopal.com/questions/
*/
class Opalestate_featured_properties_Widget extends WP_Widget{
public function __construct() {
parent::__construct(
// Base ID of your widget
'opalestate_featured_properties_widget',
// Widget name will appear in UI
esc_html__('Estate: Featured Properties', 'opalestate-pro'),
// Widget description
array( 'description' => esc_html__( 'Featured Properties widget.', 'opalestate-pro' ), )
);
}
public function widget( $args, $instance ) {
extract( $args );
extract( $instance );
//Check
$tpl = OPALESTATE_THEMER_WIDGET_TEMPLATES .'widgets/featured-properties.php';
$tpl_default = OPALESTATE_PLUGIN_DIR .'templates/widgets/featured-properties.php';
if( is_file($tpl) ) {
$tpl_default = $tpl;
}
require $tpl_default;
}
// Form
public function form( $instance ) {
//Set up some default widget settings.
$defaults = array(
'title' => esc_html__('Featured Properties', 'opalestate-pro'),
'num' => '5'
);
$instance = wp_parse_args( (array) $instance, $defaults ); ?>
<p>
<label for="<?php echo esc_attr($this->get_field_id( 'title' )); ?>"><?php esc_html_e('Title:', 'opalestate-pro'); ?></label>
<input type="text" id="<?php echo esc_attr($this->get_field_id( 'title' )); ?>" name="<?php echo esc_attr($this->get_field_name( 'title' )); ?>" value="<?php echo esc_attr($instance['title']); ?>" style="width:100%;" />
</p>
<p>
<label for="<?php echo esc_attr($this->get_field_id('num')); ?>"><?php esc_html_e('Limit:', 'opalestate-pro'); ?></label>
<br>
<input id="<?php echo esc_attr($this->get_field_id('num')); ?>" name="<?php echo esc_attr($this->get_field_name('num')); ?>" type="text" value="<?php echo esc_attr( $instance['num'] ); ?>" />
</p>
<?php
}
//Update the widget
public function update( $new_instance, $old_instance ) {
$instance = $old_instance;
//Strip tags from title and name to remove HTML
$instance['title'] = strip_tags( $new_instance['title'] );
$instance['num'] = $new_instance['num'];
return $instance;
}
}
register_widget( 'Opalestate_featured_properties_Widget' );
?>