Changeset 3365841
- Timestamp:
- 09/22/2025 01:06:34 PM (6 months ago)
- Location:
- push-notification-for-post-and-buddypress/trunk
- Files:
-
- 5 edited
-
pnfpb_push_notification.php (modified) (2 diffs)
-
public/pnfpb_comments_notification/pnfpb_post_comments_notification.php (modified) (4 diffs)
-
public/pnfpb_new_user_registration_notification/pnfpb_new_user_registration_notification.php (modified) (1 diff)
-
public/service_worker/pnfpb_create_sw_file.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
push-notification-for-post-and-buddypress/trunk/pnfpb_push_notification.php
r3361764 r3365841 4 4 Plugin URI: https://www.muraliwebworld.com/groups/wordpress-plugins-by-muralidharan-indiacitys-com-technologies/forum/topic/push-notification-for-post-and-buddypress/ 5 5 Description: Push notification for Post,custom post,BuddyPress,Woocommerce,Android/IOS mobile apps. Configure push notification settings in <a href="admin.php?page=pnfpb-icfcm-slug"><strong>settings page</strong></a> 6 Version: 3.0 16 Version: 3.02 7 7 Author: Muralidharan Ramasamy 8 8 Author URI: https://www.muraliwebworld.com … … 10 10 Requires at least: 6.2 11 11 Requires PHP: 8.1 12 Updated: 16September 202512 Updated: 23 September 2025 13 13 */ 14 14 /** -
push-notification-for-post-and-buddypress/trunk/public/pnfpb_comments_notification/pnfpb_post_comments_notification.php
r3361764 r3365841 316 316 "PNFPB_onesignal_schedule_push_notification_hook", 317 317 [ 318 $activity_id, 319 $activitytitle, 320 $localactivitycontent, 321 $activitylink, 322 $imageurl, 318 0, 319 $commenttitle, 320 mb_substr( 321 stripslashes( 322 wp_strip_all_tags(trim($localpostcontent)) 323 ), 324 0, 325 130, 326 "UTF-8" 327 ), 328 $postcommentlink, 329 $iconurl, 323 330 $target_userid_array, 324 331 ] … … 327 334 $PNFPB_WP_onesignal_notification_class_obj = new PNFPB_onesignal_notification_class(); 328 335 $PNFPB_WP_onesignal_notification_class_obj->PNFPB_onesignal_notification( 329 $activity_id, 330 $activitytitle, 331 $localactivitycontent, 332 $activitylink, 333 $imageurl, 334 $target_userid_array 336 0, 337 $commenttitle, 338 mb_substr( 339 stripslashes( 340 wp_strip_all_tags(trim($localpostcontent)) 341 ), 342 0, 343 130, 344 "UTF-8" 345 ), 346 $postcommentlink, 347 $iconurl, 348 $target_userid_array, 335 349 ); 336 350 } … … 383 397 "PNFPB_onesignal_schedule_push_notification_hook", 384 398 [ 385 $activity_id, 386 $activitytitle, 387 $localactivitycontent, 388 $activitylink, 389 $imageurl, 399 0, 400 $commenttitle, 401 mb_substr( 402 stripslashes( 403 wp_strip_all_tags(trim($localpostcontent)) 404 ), 405 0, 406 130, 407 "UTF-8" 408 ), 409 $postcommentlink, 410 $iconurl, 390 411 $mergeduserids_array, 391 412 ] … … 394 415 $PNFPB_WP_onesignal_notification_class_obj = new PNFPB_onesignal_notification_class(); 395 416 $PNFPB_WP_onesignal_notification_class_obj->PNFPB_onesignal_notification( 396 $activity_id, 397 $activitytitle, 398 $localactivitycontent, 399 $activitylink, 400 $imageurl, 417 0, 418 $commenttitle, 419 mb_substr( 420 stripslashes( 421 wp_strip_all_tags(trim($localpostcontent)) 422 ), 423 0, 424 130, 425 "UTF-8" 426 ), 427 $postcommentlink, 428 $iconurl, 401 429 $mergeduserids_array 402 430 ); -
push-notification-for-post-and-buddypress/trunk/public/pnfpb_new_user_registration_notification/pnfpb_new_user_registration_notification.php
r3361764 r3365841 172 172 $PNFPB_WP_onesignal_notification_class_obj = new PNFPB_onesignal_notification_class(); 173 173 $PNFPB_WP_onesignal_notification_class_obj->PNFPB_onesignal_notification( 174 $group_id, 175 $grouptitle, 176 $localactivitycontent, 177 $group_link, 178 $group_image, 174 $adminuser->ID, 175 $notificationtitle, 176 stripslashes( 177 wp_strip_all_tags( 178 $activity_content_push 179 ) 180 ), 181 $messageurl, 182 $iconurl, 179 183 $target_userid_array 180 184 ); -
push-notification-for-post-and-buddypress/trunk/public/service_worker/pnfpb_create_sw_file.php
r3361764 r3365841 155 155 var OFFLINE_ARTICLE_PREFIX = 'pnfpb-offline--'; 156 156 var SW = { 157 cache_version: 'pnfpb_v 2.18.2',157 cache_version: 'pnfpb_v3.02.1', 158 158 offline_assets: [] 159 159 }; -
push-notification-for-post-and-buddypress/trunk/readme.txt
r3361764 r3365841 7 7 Tested up to: 6.8 8 8 Requires PHP: 8.1 9 Stable tag: 3.0 19 Stable tag: 3.02 10 10 License: GPLv2 or later 11 11 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 200 200 201 201 == Changelog == 202 = 3.01 version 22 Sep 2025 = 203 * Bug fixes on Onesignal push notification on New user registration and post comments. 202 204 = 3.01 version 16 Sep 2025 = 203 205 * New feature: Self-hosted push notification using web-push. Plugin supports Firebase, self-supported web-push, Onesignal, Progressier & webtoapp push notifications
Note: See TracChangeset
for help on using the changeset viewer.