Changeset 9549
- Timestamp:
- 02/24/2015 03:26:17 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-core/admin/bp-core-admin-slugs.php
r9503 r9549 14 14 * Renders the page mapping admin panel. 15 15 * 16 * @since BuddyPress (1.6 )16 * @since BuddyPress (1.6.0) 17 17 * @todo Use settings API 18 18 * @uses bp_core_admin_component_options() … … 45 45 * 46 46 * @package BuddyPress 47 * @since BuddyPress (1.6 )47 * @since BuddyPress (1.6.0) 48 48 * @todo Use settings API 49 49 */ … … 73 73 /** Directory Display *****************************************************/ 74 74 75 /** 76 * Filters the loaded components needing directory page association to a WordPress page. 77 * 78 * @since BuddyPress (1.5.0) 79 * 80 * @param array $directory_pages Array of available components to set associations for. 81 */ 75 82 $directory_pages = apply_filters( 'bp_directory_pages', $directory_pages ); 76 83 … … 116 123 <?php endforeach ?> 117 124 118 <?php do_action( 'bp_active_external_directories' ); ?> 125 <?php 126 127 /** 128 * Fires after the display of default directories. 129 * 130 * Allows plugins to add their own directory associations. 131 * 132 * @since BuddyPress (1.5.0) 133 */ 134 do_action( 'bp_active_external_directories' ); ?> 119 135 120 136 </tbody> … … 133 149 ); 134 150 151 /** 152 * Filters the default static pages for BuddyPress setup. 153 * 154 * @since BuddyPress (1.6.0) 155 * 156 * @param array $static_pages Array of static default static pages. 157 */ 135 158 $static_pages = apply_filters( 'bp_static_pages', $static_pages ); 136 159 … … 175 198 <?php endforeach ?> 176 199 177 <?php do_action( 'bp_active_external_pages' ); ?> 200 <?php 201 202 /** 203 * Fires after the display of default static pages for BuddyPress setup. 204 * 205 * @since BuddyPress (1.5.0) 206 */ 207 do_action( 'bp_active_external_pages' ); ?> 178 208 179 209 </tbody> … … 187 217 * Handle saving of the BuddyPress slugs 188 218 * 189 * @since BuddyPress (1.6 )219 * @since BuddyPress (1.6.0) 190 220 * @todo Use settings API 191 221 */
Note: See TracChangeset
for help on using the changeset viewer.