Created
March 11, 2025 08:52
-
-
Save kish2011/eb0adca18677a32f6d6156b4aed9ed99 to your computer and use it in GitHub Desktop.
Custom BP Notification2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
* Plugin Name: Custom BP Notification2 | |
* Plugin URI: https://example.com/plugins/the-basics/ | |
* Description: Handle the basics with this plugin. | |
* Version: 1.10.3 | |
* Requires at least: 5.2 | |
* Requires PHP: 7.2 | |
* Author: Sajib Talukder | |
* Author URI: https://author.example.com/ | |
* License: GPL v2 or later | |
* License URI: https://www.gnu.org/licenses/gpl-2.0.html | |
* Update URI: https://example.com/my-plugin/ | |
* Text Domain: my-basics-plugin | |
* Domain Path: /languages | |
*/ | |
/** | |
* BuddyBoss Custom Notification Class. | |
*/ | |
defined( 'ABSPATH' ) || exit; | |
/** | |
* Ensure BuddyBoss Platform is active before plugin can be used. | |
*/ | |
register_activation_hook( __FILE__, 'buddyboss_days_requests_plugin_activation_check' ); | |
function buddyboss_days_requests_plugin_activation_check() { | |
if ( ! class_exists( 'BP_Core_Notification_Abstract' ) ) { | |
deactivate_plugins( plugin_basename( __FILE__ ) ); | |
wp_die( __( 'BuddyBoss Platform must be active before activating this plugin.', 'buddyboss-3day-requests' ), 'Plugin dependency check', array( 'back_link' => true ) ); | |
} | |
} | |
add_action( 'bp_init', 'buddyboss_3days_requests_plugin_init' ); | |
function buddyboss_3days_requests_plugin_init() { | |
if ( ! class_exists( 'BP_Core_Notification_Abstract' ) ) { | |
add_action( 'admin_notices', function() { | |
echo '<div class="notice notice-error"><p>' . esc_html__( 'BuddyBoss Platform must remain active for BuddyBoss 3-Day Pending Requests plugin.', 'buddyboss-3day-requests' ) . '</p></div>'; | |
} ); | |
return; | |
} | |
/** | |
* Set up the Custom notification class. | |
*/ | |
class BP_Custom_Notification extends BP_Core_Notification_Abstract { | |
/** | |
* Instance of this class. | |
* | |
* @var object | |
*/ | |
private static $instance = null; | |
/** | |
* Get the instance of this class. | |
* | |
* @return null|BP_Custom_Notification|Controller|object | |
*/ | |
public static function instance() { | |
if ( is_null( self::$instance ) ) { | |
self::$instance = new self(); | |
} | |
return self::$instance; | |
} | |
/** | |
* Constructor method. | |
*/ | |
public function __construct() { | |
$this->start(); | |
} | |
/** | |
* Initialize all methods inside it. | |
* | |
* @return mixed|void | |
*/ | |
public function load() { | |
/** | |
* Register Notification Group. | |
* | |
* @param string $group_key Group key. | |
* @param string $group_label Group label. | |
* @param string $group_admin_label Group admin label. | |
* @param int $priority Priority of the group. | |
*/ | |
$this->register_notification_group( | |
'custom', | |
esc_html__( 'Custom Notification Frontend', 'buddyboss' ), // For the frontend. | |
esc_html__( 'Custom Notifications Admin', 'buddyboss' ) // For the backend. | |
); | |
$this->register_custom_notification(); | |
} | |
/** | |
* Register notification for user mention. | |
*/ | |
public function register_custom_notification() { | |
/** | |
* Register Notification Type. | |
* | |
* @param string $notification_type Notification Type key. | |
* @param string $notification_label Notification label. | |
* @param string $notification_admin_label Notification admin label. | |
* @param string $notification_group Notification group. | |
* @param bool $default Default status for enabled/disabled. | |
*/ | |
$this->register_notification_type( | |
'notification_custom', | |
esc_html__( 'Custom Notification title', 'buddyboss' ), | |
esc_html__( 'Custom Notification admin title', 'buddyboss' ), | |
'custom' | |
); | |
/** | |
* Add email schema. | |
* | |
* @param string $email_type Type of email being sent. | |
* @param array $args Email arguments. | |
* @param string $notification_type Notification Type key. | |
*/ | |
$this->register_email_type( | |
'custom-at-message', | |
array( | |
'email_title' => __( 'email title', 'buddyboss' ), | |
'email_content' => __( 'email content', 'buddyboss' ), | |
'email_plain_content' => __( 'email plain text content', 'buddyboss' ), | |
'situation_label' => __( 'Email situation title', 'buddyboss' ), | |
'unsubscribe_text' => __( 'You will no longer receive emails when custom notification performed.', 'buddyboss' ), | |
), | |
'notification_custom' | |
); | |
/** | |
* Register notification. | |
* | |
* @param string $component Component name. | |
* @param string $component_action Component action. | |
* @param string $notification_type Notification Type key. | |
* @param string $icon_class Notification Small Icon. | |
*/ | |
$this->register_notification( | |
'custom', | |
'custom_action', | |
'notification_custom' | |
); | |
/** | |
* Register Notification Filter. | |
* | |
* @param string $notification_label Notification label. | |
* @param array $notification_types Notification types. | |
* @param int $notification_position Notification position. | |
*/ | |
$this->register_notification_filter( | |
__( 'Custom Notification Filter', 'buddyboss' ), | |
array( 'notification_custom' ), | |
5 | |
); | |
} | |
/** | |
* Format the notifications. | |
* | |
* @param string $content Notification content. | |
* @param int $item_id Notification item ID. | |
* @param int $secondary_item_id Notification secondary item ID. | |
* @param int $action_item_count Number of notifications with the same action. | |
* @param string $component_action_name Canonical notification action. | |
* @param string $component_name Notification component ID. | |
* @param int $notification_id Notification ID. | |
* @param string $screen Notification Screen type. | |
* | |
* @return array | |
*/ | |
public function format_notification( $content, $item_id, $secondary_item_id, $action_item_count, $component_action_name, $component_name, $notification_id, $screen ) { | |
if ( 'custom' === $component_name && 'custom_action' === $component_action_name ) { | |
$text = esc_html__( 'Custom Notification text.', 'buddyboss' ); | |
$link = get_permalink( $item_id ); | |
/** | |
* Change the text for Push Notifications | |
*/ | |
if($screen == "app_push" || $screen == "web_push") { | |
$text = esc_html__( 'Custom Push Notification Text Only.', 'buddyboss' ); | |
} | |
return array( | |
'title' => "", // (optional) only for push notification & if not provided no title will be used. | |
'text' => $text, | |
'link' => $link, | |
); | |
} | |
return $content; | |
} | |
} | |
} | |
add_action( | |
'bp_init', | |
function () { | |
// Register custom notification in preferences screen. | |
if ( class_exists( 'BP_Custom_Notification' ) ) { | |
BP_Custom_Notification::instance(); | |
} | |
} | |
); | |
add_action( 'init', function() { | |
if ( isset( $_GET['test_notif'] ) ) { | |
// Add in-app notification (ensure it does not override the default) | |
bp_notifications_add_notification( array( | |
'user_id' => 11266, | |
'item_id' => 999999, // Use a unique item_id to prevent clashes with the default notification | |
'secondary_item_id' => 0, | |
'component_name' => 'custom', | |
'component_action'=> 'custom_action', | |
'date_notified' => bp_core_current_time(), | |
'is_new' => 1, | |
'allow_duplicate' => true, // This ensures the default notification isn't overwritten | |
) ); | |
error_log( "Manually triggered BuddyBoss 3-day pending request notification for user #{1}" ); | |
exit; | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment