ad.php
11 years ago
ad_ajax_callbacks.php
11 years ago
ad_group.php
11 years ago
ad_placements.php
11 years ago
ad_type_abstract.php
12 years ago
ad_type_content.php
12 years ago
ad_type_plain.php
12 years ago
widget.php
11 years ago
widget.php
114 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Advanced Ads Widget |
| 4 | * |
| 5 | * @package Advads_Widget |
| 6 | * @author Thomas Maier <thomas.maier@webgilde.com> |
| 7 | * @license GPL-2.0+ |
| 8 | * @link http://webgilde.com |
| 9 | * @copyright 2014 Thomas Maier, webgilde GmbH |
| 10 | */ |
| 11 | |
| 12 | /** |
| 13 | * Ad widget |
| 14 | * |
| 15 | */ |
| 16 | class Advads_Widget extends WP_Widget { |
| 17 | |
| 18 | function __construct() { |
| 19 | $widget_ops = array('classname' => 'advads_widget', 'description' => __('Display Ads and Ad Groups.', ADVADS_SLUG)); |
| 20 | $control_ops = array(); |
| 21 | parent::__construct('advads_ad_widget', __('Advanced Ads', ADVADS_SLUG), $widget_ops, $control_ops); |
| 22 | } |
| 23 | |
| 24 | function widget($args, $instance) { |
| 25 | extract($args); |
| 26 | $item_id = empty($instance['item_id']) ? '' : $instance['item_id']; |
| 27 | echo $before_widget; |
| 28 | echo self::output($item_id); |
| 29 | echo $after_widget; |
| 30 | } |
| 31 | |
| 32 | function update($new_instance, $old_instance) { |
| 33 | $instance = $old_instance; |
| 34 | $instance['item_id'] = $new_instance['item_id']; |
| 35 | return $instance; |
| 36 | } |
| 37 | |
| 38 | function form($instance) { |
| 39 | $instance = wp_parse_args((array) $instance, array('title' => '', 'item_id' => '')); |
| 40 | $elementid = sanitize_title($instance['item_id']); |
| 41 | |
| 42 | $items = self::items_for_select(); |
| 43 | ?> |
| 44 | <select id="<?php echo $this->get_field_id('item_id'); ?>" name="<?php echo $this->get_field_name('item_id'); ?>"> |
| 45 | <option value=""><?php _e('--empty--', ADVADS_SLUG); ?></option> |
| 46 | <?php if(isset($items['ads'])) : ?> |
| 47 | <optgroup label="<?php _e('Ads', ADVADS_SLUG); ?>"> |
| 48 | <?php foreach($items['ads'] as $_item_id => $_item_title) : ?> |
| 49 | <option value="<?php echo $_item_id; ?>" <?php selected($_item_id, $elementid); ?>><?php echo $_item_title; ?></option> |
| 50 | <?php endforeach; ?> |
| 51 | </optgroup> |
| 52 | <?php endif; ?> |
| 53 | <?php if(isset($items['groups'])) : ?> |
| 54 | <optgroup label="<?php _e('Ad Groups', ADVADS_SLUG); ?>"> |
| 55 | <?php foreach($items['groups'] as $_item_id => $_item_title) : ?> |
| 56 | <option value="<?php echo $_item_id; ?>" <?php selected($_item_id, $elementid); ?>><?php echo $_item_title; ?></option> |
| 57 | <?php endforeach; ?> |
| 58 | </optgroup> |
| 59 | <?php endif; ?> |
| 60 | </select><?php |
| 61 | } |
| 62 | |
| 63 | /** |
| 64 | * get items for widget select field |
| 65 | * |
| 66 | * @since 1.2 |
| 67 | * @return arr $select items for select field |
| 68 | */ |
| 69 | static function items_for_select(){ |
| 70 | $select = array(); |
| 71 | |
| 72 | // load all ads |
| 73 | $ads = Advanced_Ads::get_ads(); |
| 74 | foreach($ads as $_ad){ |
| 75 | $select['ads']['ad_' . $_ad->ID] = $_ad->post_title; |
| 76 | } |
| 77 | |
| 78 | // load all ad groups |
| 79 | $groups = Advanced_Ads::get_ad_groups(); |
| 80 | foreach($groups as $_group){ |
| 81 | $select['groups']['group_' . $_group->term_id] = $_group->name; |
| 82 | } |
| 83 | |
| 84 | return $select; |
| 85 | } |
| 86 | |
| 87 | /** |
| 88 | * return content of an in a widget |
| 89 | * |
| 90 | * @since 1.2 |
| 91 | * @param string $id slug of the display |
| 92 | */ |
| 93 | static function output($id = ''){ |
| 94 | // get placement data for the slug |
| 95 | if(empty($id)) return; |
| 96 | |
| 97 | $item = explode('_', $id); |
| 98 | |
| 99 | if(isset($item[1])) |
| 100 | $item_id = absint($item[1]); |
| 101 | elseif(empty($item_id)) return; |
| 102 | |
| 103 | // return either ad or group content |
| 104 | if($item[0] == 'ad'){ |
| 105 | return get_ad($item_id); |
| 106 | } elseif($item[0] == 'group'){ |
| 107 | return get_ad_group($item_id); |
| 108 | } |
| 109 | |
| 110 | return; |
| 111 | } |
| 112 | |
| 113 | } |
| 114 |