BP_Nouveau_Notifications
Notifications Loader class
Description
Source
File: bp-templates/bp-nouveau/includes/notifications/loader.php
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 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 | class BP_Nouveau_Notifications { /** * Constructor * * @since BuddyPress 3.0.0 */ public function __construct() { $this ->setup_globals(); $this ->includes(); $this ->setup_actions(); $this ->setup_filters(); } /** * Globals * * @since BuddyPress 3.0.0 */ protected function setup_globals() { $this ->dir = dirname( __FILE__ ); } /** * Include needed files * * @since BuddyPress 3.0.0 */ protected function includes() { $dir = trailingslashit( $this ->dir ); require "{$dir}functions.php" ; require "{$dir}template-tags.php" ; } /** * Register do_action() hooks * * @since BuddyPress 3.0.0 */ protected function setup_actions() { add_action( 'bp_init' , 'bp_nouveau_notifications_init_filters' , 20 ); add_action( 'bp_nouveau_enqueue_scripts' , 'bp_nouveau_notifications_enqueue_scripts' ); $ajax_actions = array ( array ( 'notifications_filter' => array ( 'function' => 'bp_nouveau_ajax_object_template_loader' , 'nopriv' => false, ), ), ); foreach ( $ajax_actions as $ajax_action ) { $action = key( $ajax_action ); add_action( 'wp_ajax_' . $action , $ajax_action [ $action ][ 'function' ] ); if ( ! empty ( $ajax_action [ $action ][ 'nopriv' ] ) ) { add_action( 'wp_ajax_nopriv_' . $action , $ajax_action [ $action ][ 'function' ] ); } } } /** * Register add_filter() hooks * * @since BuddyPress 3.0.0 */ protected function setup_filters() { add_filter( 'bp_nouveau_register_scripts' , 'bp_nouveau_notifications_register_scripts' , 10, 1 ); add_filter( 'bp_get_the_notification_mark_unread_link' , 'bp_nouveau_notifications_mark_unread_link' , 10, 1 ); add_filter( 'bp_get_the_notification_mark_read_link' , 'bp_nouveau_notifications_mark_read_link' , 10, 1 ); add_filter( 'bp_get_the_notification_delete_link' , 'bp_nouveau_notifications_delete_link' , 10, 1 ); } } |
Changelog
Version | Description |
---|---|
BuddyPress 3.0.0 | Introduced. |
Methods
- __construct — Constructor
- includes — Include needed files
- setup_actions — Register do_action() hooks
- setup_filters — Register add_filter() hooks
- setup_globals — Globals
Questions?
We're always happy to help with code or other questions you might have! Search our developer docs, contact support, or connect with our sales team.