File: /home/clinicamaciel/www/wp-content/plugins/trx_addons/widgets/calendar/calendar.php
<?php
/**
* Widget: Calendar
*
* @package WordPress
* @subpackage ThemeREX Addons
* @since v1.0
*/
// Load widget
if (!function_exists('trx_addons_widget_calendar_load')) {
add_action( 'widgets_init', 'trx_addons_widget_calendar_load' );
function trx_addons_widget_calendar_load() {
register_widget('trx_addons_widget_calendar');
}
}
// Widget Class
class trx_addons_widget_calendar extends WP_Widget {
function __construct() {
$widget_ops = array('classname' => 'widget_calendar', 'description' => esc_html__('Standard WP Calendar with short week days', 'trx_addons'));
parent::__construct( 'trx_addons_widget_calendar', esc_html__('ThemeREX Addons - Calendar', 'trx_addons'), $widget_ops );
}
// Show widget
function widget($args, $instance) {
extract($args);
$title = apply_filters('widget_title', isset($instance['title']) ? $instance['title'] : '');
$weekdays = isset($instance['weekdays']) ? $instance['weekdays'] : 'short';
$output = get_calendar($weekdays=='initial', false);
if (!empty($output)) {
// Before widget (defined by themes)
trx_addons_show_layout($before_widget);
// Display the widget title if one was input (before and after defined by themes)
if ($title) trx_addons_show_layout($before_title . $title . $after_title);
// Display widget body
trx_addons_show_layout($output);
// After widget (defined by themes)
trx_addons_show_layout($after_widget);
}
}
// Update the widget settings.
function update($new_instance, $old_instance) {
$instance = $old_instance;
// Strip tags for title and comments count to remove HTML (important for text inputs)
$instance['title'] = strip_tags($new_instance['title']);
$instance['weekdays'] = !empty($new_instance['weekdays']) && $new_instance['weekdays']=='short' ? 'short' : 'initial';
return $instance;
}
// Displays the widget settings controls on the widget panel.
function form($instance) {
// Set up some default widget settings
$instance = wp_parse_args( (array) $instance, array(
'title' => '',
'weekdays' => 'short'
)
);
$title = $instance['title'];
$weekdays = $instance['weekdays'];
?>
<p>
<label for="<?php echo esc_attr($this->get_field_id('title')); ?>"><?php esc_html_e('Widget title:', 'trx_addons'); ?></label><br>
<input 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($title); ?>" class="widgets_param_fullwidth" />
</p>
<p>
<label for="<?php echo esc_attr($this->get_field_id('weekdays')); ?>_short"><?php esc_html_e('Week days:', 'trx_addons'); ?></label><br>
<input id="<?php echo esc_attr($this->get_field_id('weekdays')); ?>_short" name="<?php echo esc_attr($this->get_field_name('weekdays')); ?>" value="short" type="radio" <?php if ($weekdays=='short') echo ' checked="checked"'; ?> />
<label for="<?php echo esc_attr($this->get_field_id('weekdays')); ?>_short"><?php esc_html_e('3 letters (Sun Mon Tue Wed Thu Fri Sat)', 'trx_addons'); ?></label><br>
<input id="<?php echo esc_attr($this->get_field_id('weekdays')); ?>_init" name="<?php echo esc_attr($this->get_field_name('weekdays')); ?>" value="initial" type="radio" <?php if ($weekdays=='initital') echo ' checked="checked"'; ?> />
<label for="<?php echo esc_attr($this->get_field_id('weekdays')); ?>_init"><?php esc_html_e('First letter (S M T W T F S)', 'trx_addons'); ?></label>
</p>
<?php
}
}
// trx_widget_calendar
//-------------------------------------------------------------
/*
[trx_widget_calendar id="unique_id" title="Widget title" weekdays="short|initial"]
*/
if ( !function_exists( 'trx_addons_sc_widget_calendar' ) ) {
function trx_addons_sc_widget_calendar($atts, $content=null){
$atts = trx_addons_sc_prepare_atts('trx_widget_calendar', $atts, array(
// Individual params
"title" => "",
"weekdays" => "short",
// Common params
"id" => "",
"class" => "",
"css" => ""
)
);
if ($atts['weekdays']=='') $atts['weekdays'] = 'short';
extract($atts);
$type = 'trx_addons_widget_calendar';
$output = '';
global $wp_widget_factory, $TRX_ADDONS_STORAGE;
if ( is_object( $wp_widget_factory ) && isset( $wp_widget_factory->widgets, $wp_widget_factory->widgets[ $type ] ) ) {
$output = '<div' . ($id ? ' id="'.esc_attr($id).'"' : '')
. ' class="widget_area sc_widget_calendar'
. (trx_addons_exists_visual_composer() ? ' vc_widget_calendar wpb_content_element' : '')
. (!empty($class) ? ' ' . esc_attr($class) : '')
. '"'
. ($css ? ' style="'.esc_attr($css).'"' : '')
. '>';
ob_start();
the_widget( $type, $atts, trx_addons_prepare_widgets_args($TRX_ADDONS_STORAGE['widgets_args'], $id ? $id.'_widget' : 'widget_calendar', 'widget_calendar') );
$output .= ob_get_contents();
ob_end_clean();
$output .= '</div>';
}
return apply_filters('trx_addons_sc_output', $output, 'trx_widget_calendar', $atts, $content);
}
}
// Add [trx_widget_calendar] in the VC shortcodes list
if (!function_exists('trx_addons_sc_widget_calendar_add_in_vc')) {
function trx_addons_sc_widget_calendar_add_in_vc() {
if (!trx_addons_exists_visual_composer()) return;
add_shortcode("trx_widget_calendar", "trx_addons_sc_widget_calendar");
vc_lean_map("trx_widget_calendar", 'trx_addons_sc_widget_calendar_add_in_vc_params');
class WPBakeryShortCode_Trx_Widget_Calendar extends WPBakeryShortCode {}
}
add_action('init', 'trx_addons_sc_widget_calendar_add_in_vc', 20);
}
// Return params
if (!function_exists('trx_addons_sc_widget_calendar_add_in_vc_params')) {
function trx_addons_sc_widget_calendar_add_in_vc_params() {
return apply_filters('trx_addons_sc_map', array(
"base" => "trx_widget_calendar",
"name" => esc_html__("Calendar", 'trx_addons'),
"description" => wp_kses_data( __("Insert standard WP Calendar, but allow user select week day's captions", 'trx_addons') ),
"category" => esc_html__('ThemeREX', 'trx_addons'),
"icon" => 'icon_trx_widget_calendar',
"class" => "trx_widget_calendar",
"content_element" => true,
"is_container" => false,
"show_settings_on_create" => true,
"params" => array_merge(
array(
array(
"param_name" => "title",
"heading" => esc_html__("Widget title", 'trx_addons'),
"description" => wp_kses_data( __("Title of the widget", 'trx_addons') ),
"admin_label" => true,
"type" => "textfield"
),
array(
"param_name" => "weekdays",
"heading" => esc_html__("Week days", 'trx_addons'),
"description" => wp_kses_data( __("Show captions for the week days as three letters (Sun, Mon, etc.) or as one initial letter (S, M, etc.)", 'trx_addons') ),
"value" => array("Initial letter" => "initial" ),
"type" => "checkbox"
)
),
trx_addons_vc_add_id_param()
)
), 'trx_widget_calendar' );
}
}
?>