┌────────────────────────────────┐ │ ░░░ ░░▓ ░▓▓ ███ ▓▓░ ▓░░ │ │ ~ M O O N ~ │ └────────────────────────────────┘
prd-web-01.centraldc.gr
LOCATION:
/var/www/html/stafilos/wp-content/plugins/bridge-core/modules/widgets
☗ ROOT
↻ REFRESH
✎ EDIT FILE
EDITING: widget-class.php
<?php /** * Abstract class that makes it easy to create widgets. It has generic methods for generating form and updating widgets * Classes that extend this class needs to implement setParams method where $params property will be populated * * Class QodeWidget */ abstract class BridgeQodeWidget extends WP_Widget { /** * Widget parameters that form will be generated from * @var */ protected $params; /** * @return mixed */ abstract protected function setParams(); /** * Generate widget form based on $params attribute * * @param array $instance * * @return null */ public function form($instance) { if(is_array($this->params) && count($this->params)) { foreach($this->params as $param_array) { $param_name = $param_array['name']; ${$param_name} = isset($instance[$param_name]) ? esc_attr($instance[$param_name]) : ''; } foreach($this->params as $param) { switch($param['type']) { case 'textfield': ?> <p> <label for="<?php echo esc_attr($this->get_field_id($param['name'])); ?>"><?php echo esc_html($param['title']); ?>:</label> <input class="widefat" id="<?php echo esc_attr($this->get_field_id($param['name'])); ?>" name="<?php echo esc_attr($this->get_field_name($param['name'])); ?>" type="text" value="<?php echo esc_attr(${$param['name']}); ?>"/> <?php if(!empty($param['description'])) : ?> <span class="qode-field-description"><?php echo esc_html($param['description']); ?></span> <?php endif; ?> </p> <?php break; case 'textfield_html': ?> <p> <label for="<?php echo esc_attr($this->get_field_id($param['name'])); ?>"><?php echo esc_html($param['title']); ?>:</label> <input class="widefat" id="<?php echo esc_attr($this->get_field_id($param['name'])); ?>" name="<?php echo esc_attr($this->get_field_name($param['name'])); ?>" type="text" value="<?php echo esc_attr(${$param['name']}); ?>"/> <?php if(!empty($param['description'])) : ?> <span class="qode-field-description"><?php print wp_kses_post($param['description']); ?></span> <?php endif; ?> </p> <?php break; case 'dropdown': ?> <p> <label for="<?php echo esc_attr($this->get_field_id($param['name'])); ?>"><?php echo esc_html($param['title']); ?>:</label> <?php if(isset($param['options']) && is_array($param['options']) && count($param['options'])) { ?> <select class="widefat" name="<?php echo esc_attr($this->get_field_name($param['name'])); ?>" id="<?php echo esc_attr($this->get_field_id($param['name'])); ?>"> <?php foreach($param['options'] as $param_option_key => $param_option_val) { $option_selected = ''; if(${$param['name']} == $param_option_key) { $option_selected = 'selected'; } ?> <option <?php echo esc_attr($option_selected); ?> value="<?php echo esc_attr($param_option_key); ?>"><?php echo esc_attr($param_option_val); ?></option> <?php } ?> </select> <?php } ?> <?php if(!empty($param['description'])) : ?> <span class="qode-field-description"><?php echo esc_html($param['description']); ?></span> <?php endif; ?> </p> <?php break; case 'colorpicker': ?> <p class="qode-widget-color-picker"> <label for="<?php echo esc_attr($this->get_field_id($param['name'])); ?>"><?php echo esc_html($param['title']); ?>:</label> <input class="widefat qode-color-picker-field" id="<?php echo esc_attr($this->get_field_id($param['name'])); ?>" name="<?php echo esc_attr($this->get_field_name($param['name'])); ?>" type="text" value="<?php echo esc_attr(${$param['name']}); ?>"/> <?php if(!empty($param['description'])) : ?> <span class="qode-field-description"><?php echo esc_html($param['description']); ?></span> <?php endif; ?> </p> <?php break; case 'image': ?> <div class="qode-user-image-field"> <label for="<?php echo esc_attr($this->get_field_id($param['name'])); ?>"><?php echo esc_html($param['title']); ?>:</label> <input type="hidden" name="<?php echo esc_attr($this->get_field_name($param['name'])); ?>" id="<?php echo esc_attr($this->get_field_id($param['name'])); ?>" class="widefat qode-user-custom-media-url" value="<?php echo esc_attr(${$param['name']}); ?>"> <div class="qode-user-image-wrapper"> <?php if ( esc_attr(${$param['name']})) { ?> <?php echo wp_get_attachment_image( esc_attr(${$param['name']}), array(100,100) ); ?> <?php } ?> </div> <p> <input type="button" class="button button-secondary qode-user-media-add" name="qode-user-media-add" value="<?php esc_attr_e( 'Add Image', 'bridge-core' ); ?>"/> <input type="button" class="button button-secondary qode-user-media-remove" name="qode-user-media-remove" value="<?php esc_attr_e( 'Remove Image', 'bridge-core' ); ?>"/> <?php wp_nonce_field( 'qode_user_del_image_nonce', 'qode_user_del_image_nonce' ); ?> </p> </div> <?php break; } } } else { ?> <p><?php esc_html_e('There are no options for this widget.', 'bridge-core'); ?></p> <?php } } /** * @param array $new_instance * @param array $old_instance * * @return array */ public function update($new_instance, $old_instance) { $instance = array(); foreach($this->params as $param) { $param_name = $param['name']; $instance[$param_name] = sanitize_text_field($new_instance[$param_name]); } return $instance; } } ?>
CANCEL
Name
Type
Size
Modified
Actions
↩ ..
DIR
—
—
📄 load.php
PHP
894 B
2026-04-28 11:58
EDIT
📄 widget-class.php
PHP
7.3 KB
2026-04-28 11:58
EDIT
📄 widget-loader.php
PHP
329 B
2026-04-28 11:58
EDIT