Changeset 7382
- Timestamp:
- 12/19/2025 08:02:00 PM (10 days ago)
- Location:
- trunk/src/includes
- Files:
-
- 7 edited
-
admin/classes/class-bbp-converter.php (modified) (1 diff)
-
admin/forums.php (modified) (1 diff)
-
admin/replies.php (modified) (1 diff)
-
admin/topics.php (modified) (1 diff)
-
admin/users.php (modified) (1 diff)
-
extend/akismet.php (modified) (1 diff)
-
extend/buddypress/loader.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/includes/admin/classes/class-bbp-converter.php
r7380 r7382 152 152 // Attach to the admin ajax request to process cycles 153 153 add_action( 'wp_ajax_bbp_converter_process', array( $this, 'process_callback' ) ); 154 155 /** Dependencies ******************************************************/ 156 157 // Allow plugins to modify these actions 158 do_action_ref_array( 'bbp_admin_converter_loaded', array( &$this ) ); 154 159 } 155 160 -
trunk/src/includes/admin/forums.php
r7380 r7382 74 74 add_action( 'load-post.php', array( $this, 'new_help' ) ); 75 75 add_action( 'load-post-new.php', array( $this, 'new_help' ) ); 76 77 /** Dependencies ******************************************************/ 78 79 // Allow plugins to modify these actions 80 do_action_ref_array( 'bbp_admin_forums_loaded', array( &$this ) ); 76 81 } 77 82 -
trunk/src/includes/admin/replies.php
r7380 r7382 88 88 add_action( 'load-post.php', array( $this, 'new_help' ) ); 89 89 add_action( 'load-post-new.php', array( $this, 'new_help' ) ); 90 91 /** Dependencies ******************************************************/ 92 93 // Allow plugins to modify these actions 94 do_action_ref_array( 'bbp_admin_replies_loaded', array( &$this ) ); 90 95 } 91 96 -
trunk/src/includes/admin/topics.php
r7380 r7382 92 92 add_action( 'load-post.php', array( $this, 'new_help' ) ); 93 93 add_action( 'load-post-new.php', array( $this, 'new_help' ) ); 94 95 /** Dependencies ******************************************************/ 96 97 // Allow plugins to modify these actions 98 do_action_ref_array( 'bbp_admin_topics_loaded', array( &$this ) ); 94 99 } 95 100 -
trunk/src/includes/admin/users.php
r7380 r7382 66 66 add_action( 'load-users.php', array( $this, 'user_role_bulk_change' ), 10, 1 ); 67 67 add_action( 'user_row_actions', array( $this, 'user_row_actions' ), 10, 2 ); 68 69 /** Dependencies ******************************************************/ 70 71 // Allow plugins to modify these actions 72 do_action_ref_array( 'bbp_admin_users_loaded', array( &$this ) ); 68 73 } 69 74 -
trunk/src/includes/extend/akismet.php
r7380 r7382 87 87 add_action( 'add_meta_boxes', array( $this, 'add_metaboxes' ) ); 88 88 } 89 90 /** Dependencies ******************************************************/ 91 92 // Allow plugins to modify these actions 93 do_action_ref_array( 'bbp_extend_akismet_loaded', array( &$this ) ); 89 94 } 90 95 -
trunk/src/includes/extend/buddypress/loader.php
r7380 r7382 155 155 // Setup the components 156 156 add_action( 'bp_init', array( $this, 'setup_components' ), 7 ); 157 158 /** Dependencies ******************************************************/ 159 160 // Allow plugins to modify these actions 161 do_action_ref_array( 'bbp_extend_buddypress_loaded', array( &$this ) ); 157 162 158 163 parent::setup_actions();
Note: See TracChangeset
for help on using the changeset viewer.