Server : Apache System : Linux ls31.server.ly 3.10.0-962.3.2.lve1.5.68.el7.x86_64 #1 SMP Wed Apr 6 11:12:23 UTC 2022 x86_64 User : medchoco ( 2906) PHP Version : 8.3.16 Disable Function : mail Directory : /home/medchoco/www/wp-content/themes/puca/inc/widgets/ |
Upload File : |
<?php class puca_Tbay_Socials_Widget extends Tbay_Widget { public function __construct() { parent::__construct( 'tbay_socials_widget', esc_html__('Tbay Socials', 'puca'), array( 'description' => esc_html__( 'Socials for website.', 'puca' ), ) ); $this->widgetName = 'socials'; add_action('admin_enqueue_scripts', array($this, 'scripts')); } public function scripts() { $suffix = (puca_tbay_get_config('minified_js', false)) ? '.min' : PUCA_MIN_JS; wp_enqueue_script( 'puca-script-admin-js', PUCA_SCRIPTS . '/admin/admin' . $suffix . '.js', array( 'jquery' ), TBAY_FRAMEWORK_VERSION, true ); } public function getTemplate() { $this->template = 'socials.php'; } public function widget( $args, $instance ) { $this->display($args, $instance); } public function form( $instance ) { $list_socials = array( 'facebook' => 'Facebook', 'twitter' => 'Twitter', 'youtube' => 'Youtube', 'pinterest' => 'Pinterest', 'google-plus' => 'Google plus', 'linkedin' => 'LinkedIn' ); $defaults = array('title' => 'Find us on social networks', 'layout' => 'default', 'socials' => array()); $instance = wp_parse_args((array) $instance, $defaults); ?> <div class="tbay_socials"> <p> <label for="<?php echo esc_attr($this->get_field_id('title')); ?>"><?php esc_html_e('Title:', 'puca'); ?></label> <input class="widefat" 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']); ?>" /> </p> <p> <label for="<?php echo esc_attr($this->get_field_id( 'socials' )); ?>"><?php esc_html_e('Select socials:','puca'); ?></label> <br> <?php foreach ($list_socials as $key => $value): $checked = (isset($instance['socials'][$key]['status']) && ($instance['socials'][$key]['status'])) ? 1: 0; $link = (isset($instance['socials'][$key]['page_url'])) ? $instance['socials'][$key]['page_url']: ''; ?> <p> <input class="checkbox" type="checkbox" <?php checked( $checked, 1 ); ?> id="<?php echo esc_attr( $key ); ?>" name="<?php echo esc_attr($this->get_field_name('socials')); ?>[<?php echo esc_attr( $key ); ?>][status]" /> <label for="<?php echo esc_attr($this->get_field_name('socials') ); ?>[<?php echo esc_attr( $key ); ?>][status]"> <?php echo esc_html__('Show ','puca').esc_html( $value ); ?> </label> <input type="hidden" name="<?php echo esc_attr($this->get_field_name('socials')); ?>[<?php echo esc_attr( $key ); ?>][name]" value=<?php echo esc_attr( $value ); ?> /> </p> <?php $class_checked = ($checked)? 'block': 'none'; ?> <p style="display: <?php echo esc_attr( $class_checked ); ?>" id="<?php echo esc_attr($this->get_field_id($key)); ?>" class="text_url <?php echo esc_attr( $key ); ?>"> <label for="<?php echo esc_attr($this->get_field_name('socials')); ?>[<?php echo esc_attr( $key ); ?>][page_url]"> <?php echo esc_html( $value ).' '.esc_html__('Page URL:','puca').' '; ?> </label> <input class="widefat" type="text" id="<?php echo esc_attr($this->get_field_name('socials')); ?>[<?php echo esc_attr( $key ); ?>][page_url]" name="<?php echo esc_attr($this->get_field_name('socials')); ?>[<?php echo esc_attr( $key ); ?>][page_url]" value="<?php echo esc_attr($link); ?>" /> </p> <?php endforeach; ?> </p> </div> <?php } public function update( $new_instance, $old_instance ) { $instance = $old_instance; $instance['title'] = strip_tags($new_instance['title']); $instance['socials'] = $new_instance['socials']; $instance['layout'] = ( ! empty( $new_instance['layout'] ) ) ? $new_instance['layout'] : 'default'; return $instance; } }