Changeset 2088792
- Timestamp:
- 05/16/2019 04:06:33 AM (7 years ago)
- Location:
- dw-notifications
- Files:
-
- 49 added
- 4 edited
-
tags/1.0.4 (added)
-
tags/1.0.4/assets (added)
-
tags/1.0.4/assets/._webfonts (added)
-
tags/1.0.4/assets/css (added)
-
tags/1.0.4/assets/css/dw-notifications.css (added)
-
tags/1.0.4/assets/css/multi-select.css (added)
-
tags/1.0.4/assets/images (added)
-
tags/1.0.4/assets/images/image_default.png (added)
-
tags/1.0.4/assets/images/switch.png (added)
-
tags/1.0.4/assets/js (added)
-
tags/1.0.4/assets/js/admin-script.js (added)
-
tags/1.0.4/assets/js/dw-notifications.js (added)
-
tags/1.0.4/assets/js/jquery.multi-select.js (added)
-
tags/1.0.4/dw-notifications.php (added)
-
tags/1.0.4/inc (added)
-
tags/1.0.4/inc/Ajax.php (added)
-
tags/1.0.4/inc/Integrations.php (added)
-
tags/1.0.4/inc/Notification.php (added)
-
tags/1.0.4/inc/Script.php (added)
-
tags/1.0.4/inc/Settings.php (added)
-
tags/1.0.4/inc/Shortcode.php (added)
-
tags/1.0.4/inc/Template.php (added)
-
tags/1.0.4/inc/autoload.php (added)
-
tags/1.0.4/inc/functions.php (added)
-
tags/1.0.4/inc/integrations (added)
-
tags/1.0.4/inc/integrations/dwqa (added)
-
tags/1.0.4/inc/integrations/dwqa/index.php (added)
-
tags/1.0.4/inc/integrations/dwqa/loader.php (added)
-
tags/1.0.4/inc/integrations/index.php (added)
-
tags/1.0.4/inc/integrations/wordpress-post (added)
-
tags/1.0.4/inc/integrations/wordpress-post/index.php (added)
-
tags/1.0.4/inc/integrations/wordpress-post/loader.php (added)
-
tags/1.0.4/languages (added)
-
tags/1.0.4/languages/dw-notifications-ar.mo (added)
-
tags/1.0.4/languages/dw-notifications-ar.po (added)
-
tags/1.0.4/languages/dw-notifications-vi.mo (added)
-
tags/1.0.4/languages/dw-notifications-vi.po (added)
-
tags/1.0.4/languages/dw-notifications.pot (added)
-
tags/1.0.4/libs (added)
-
tags/1.0.4/libs/custom-list-table.php (added)
-
tags/1.0.4/readme.txt (added)
-
tags/1.0.4/templates (added)
-
tags/1.0.4/templates/default (added)
-
tags/1.0.4/templates/default/notification-alert.php (added)
-
tags/1.0.4/templates/default/notification-item.php (added)
-
tags/1.0.4/templates/default/notification-list-all.php (added)
-
tags/1.0.4/templates/default/notification-list.php (added)
-
tags/1.0.4/templates/default/notification-popup-item.php (added)
-
tags/1.0.4/templates/default/notification-popup.php (added)
-
trunk/dw-notifications.php (modified) (2 diffs)
-
trunk/inc/integrations/dwqa/loader.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/templates/default/notification-popup-item.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
dw-notifications/trunk/dw-notifications.php
r2021763 r2088792 5 5 * Author: DesignWall 6 6 * Author URI: http://www.designwall.com 7 * Version: 1.0. 37 * Version: 1.0.4 8 8 * Text Domain: dw-notifications 9 9 */ … … 16 16 class DW_Notifications{ 17 17 public function __construct() { 18 $this->version = '1.0. 3';18 $this->version = '1.0.4'; 19 19 $this->define_constants(); 20 20 $this->includes(); -
dw-notifications/trunk/inc/integrations/dwqa/loader.php
r2012557 r2088792 169 169 $notif = array('title'=>$title, 'link' => get_permalink($question_id). '#comment-' . $comment_id, 'custom_type' => 'replied'); 170 170 171 dwnotif_add_ user_notify($comment_value->user_id, $notif);171 dwnotif_add_notification($comment_value->user_id, $notif); 172 172 } 173 173 } -
dw-notifications/trunk/readme.txt
r2021763 r2088792 3 3 Tags: alert, bar, counter, notification, notification bar, mobile, jquery, plugin, foobar 4 4 Requires at least: 3.0.1 5 Tested up to: 5. 0.36 Stable tag: 1.0. 35 Tested up to: 5.2 6 Stable tag: 1.0.4 7 7 License: GPLv3 8 8 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 58 58 == Changelog == 59 59 60 = 1.0.4 = 61 62 * Fix integration with DWQA comment 63 60 64 = 1.0.3 = 61 65 -
dw-notifications/trunk/templates/default/notification-popup-item.php
r2012557 r2088792 3 3 $notification_time = strtotime($notification->post_date); 4 4 $type = get_post_meta($notification_id, 'dw_notification_type', true); 5 $custom_type = get_post_meta($notification_id, 'dw_notification_ type', true);5 $custom_type = get_post_meta($notification_id, 'dw_notification_custom_type', true); 6 6 7 7 ?>
Note: See TracChangeset
for help on using the changeset viewer.