1  2  3  4  5  6  7  8  9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 
	<?php
namespace REL\widgets;
use hji\common\interfaces\Widget as WidgetInterface;
require_once(\hji\membership\Membership::$dir . '/common/interfaces/Widget.php');
class PocketListingsSearchWidget extends WidgetInterface
{
    function __construct()
    {
        $widget_ops  = array(
            'classname' => 'property-search',
            'description' => __('Pocket listings search widget.', 'rel')
        );
        $control_ops = array('width' => 200, 'height' => 250, 'id_base' => 'property-search');
        parent::__construct('property-search', __('HJI Pocket Listings Search', 'rel'), $widget_ops, $control_ops);
    }
    function prepareWidget($args, $instance)
    {
        $instance = wp_parse_args(
            (array)$instance,
            array(
                 'title'       => '',
                 'button_text' => __('Search Properties', 'rel'),
                 'listings_taxonomies' => (array)get_option('listing-taxonomies')
            )
        );
        return $instance;
    }
    function update($new_instance, $old_instance)
    {
        return $new_instance;
    }
    function prepareForm($instance)
    {
        $vars['instance'] = wp_parse_args(
            (array)$instance,
            array(
                'title'       => '',
                'button_text' => __('Search Properties', 'rel'),
                'listings_taxonomies' => (array)get_option('listing-taxonomies')
            )
        );
        return $vars;
    }
    function getFormTemplateFile()
    {
        return REL_VIEWS . 'widget-property-search-form.phtml';
    }
    function getWidgetTemplateFile()
    {
        return REL_VIEWS . 'widget-property-search-view.phtml';
    }
}