Changeset 4053 for trunk/bp-core/bp-core-functions.php
- Timestamp:
- 02/18/2011 03:23:04 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bp-core/bp-core-functions.php
r3987 r4053 16 16 * Fetches BP pages from the meta table, depending on setup 17 17 * 18 * @package BuddyPress Core Core18 * @package BuddyPress Core 19 19 */ 20 20 function bp_core_get_page_meta() { … … 30 30 * Stores BP pages in the meta table, depending on setup 31 31 * 32 * @package BuddyPress Core Core32 * @package BuddyPress Core 33 33 */ 34 34 function bp_core_update_page_meta( $page_ids ) { … … 722 722 } 723 723 724 /** 725 * This function originally let plugins add support for pages in the root of the install. 726 * These root level pages are now handled by actual WordPress pages and this function is now 727 * a convenience for compatibility with the new method. 728 * 729 * @global $bp BuddyPress global settings 730 * @param $slug str The slug of the component 731 */ 732 function bp_core_add_root_component( $slug ) { 733 global $bp; 734 735 if ( empty( $bp->pages ) ) 736 $bp->pages = bp_core_get_page_names(); 737 738 $match = false; 739 740 // Check if the slug is registered in the $bp->pages global 741 foreach ( (array)$bp->pages as $key => $page ) { 742 if ( $key == $slug || $page->slug == $slug ) 743 $match = true; 744 } 745 746 // If there was no match, add a page for this root component 747 if ( empty( $match ) ) { 748 $bp->add_root[] = $slug; 749 add_action( 'bp_init', 'bp_core_create_root_component_page' ); 750 } 751 } 752 753 function bp_core_create_root_component_page() { 754 global $bp; 755 756 $new_page_ids = array(); 757 758 foreach ( (array)$bp->add_root as $slug ) 759 $new_page_ids[$slug] = wp_insert_post( array( 'comment_status' => 'closed', 'ping_status' => 'closed', 'post_title' => ucwords( $slug ), 'post_status' => 'publish', 'post_type' => 'page' ) ); 760 761 $page_ids = array_merge( (array) $new_page_ids, (array) bp_core_get_page_meta() ); 762 bp_core_update_page_meta( $page_ids ); 763 } 724 764 ?>
Note: See TracChangeset
for help on using the changeset viewer.