mirror of
https://gh.wpcy.net/https://github.com/buddypress/buddypress.git
synced 2026-06-01 05:28:27 +08:00
git-svn-id: https://buddypress.svn.wordpress.org/trunk@7555 cdf35c40-ae34-48e0-9cc9-0c9da1808c22
236 lines
6.7 KiB
PHP
236 lines
6.7 KiB
PHP
<?php
|
|
|
|
/**
|
|
* BuddyPress Blogs Screens
|
|
*
|
|
* @package BuddyPress
|
|
* @subpackage BlogsScreens
|
|
*/
|
|
|
|
// Exit if accessed directly
|
|
if ( !defined( 'ABSPATH' ) ) exit;
|
|
|
|
/**
|
|
* Load the "My Blogs" screen.
|
|
*/
|
|
function bp_blogs_screen_my_blogs() {
|
|
if ( !is_multisite() )
|
|
return false;
|
|
|
|
do_action( 'bp_blogs_screen_my_blogs' );
|
|
|
|
bp_core_load_template( apply_filters( 'bp_blogs_template_my_blogs', 'members/single/home' ) );
|
|
}
|
|
|
|
/**
|
|
* Load the "Create a Blog" screen.
|
|
*/
|
|
function bp_blogs_screen_create_a_blog() {
|
|
|
|
if ( !is_multisite() || !bp_is_blogs_component() || !bp_is_current_action( 'create' ) )
|
|
return false;
|
|
|
|
if ( !is_user_logged_in() || !bp_blog_signup_enabled() )
|
|
return false;
|
|
|
|
do_action( 'bp_blogs_screen_create_a_blog' );
|
|
|
|
bp_core_load_template( apply_filters( 'bp_blogs_template_create_a_blog', 'blogs/create' ) );
|
|
}
|
|
add_action( 'bp_screens', 'bp_blogs_screen_create_a_blog', 3 );
|
|
|
|
/**
|
|
* Load the top-level Blogs directory.
|
|
*/
|
|
function bp_blogs_screen_index() {
|
|
if ( is_multisite() && bp_is_blogs_component() && !bp_current_action() ) {
|
|
bp_update_is_directory( true, 'blogs' );
|
|
|
|
do_action( 'bp_blogs_screen_index' );
|
|
|
|
bp_core_load_template( apply_filters( 'bp_blogs_screen_index', 'blogs/index' ) );
|
|
}
|
|
}
|
|
add_action( 'bp_screens', 'bp_blogs_screen_index', 2 );
|
|
|
|
/** Theme Compatability *******************************************************/
|
|
|
|
/**
|
|
* The main theme compat class for BuddyPress Blogs
|
|
*
|
|
* This class sets up the necessary theme compatability actions to safely output
|
|
* group template parts to the_title and the_content areas of a theme.
|
|
*
|
|
* @since BuddyPress (1.7.0)
|
|
*/
|
|
class BP_Blogs_Theme_Compat {
|
|
|
|
/**
|
|
* Set up theme compatibility for the Blogs component.
|
|
*
|
|
* @since BuddyPress (1.7.0)
|
|
*/
|
|
public function __construct() {
|
|
add_action( 'bp_setup_theme_compat', array( $this, 'is_blogs' ) );
|
|
}
|
|
|
|
/**
|
|
* Are we looking at something that needs Blogs theme compatability?
|
|
*
|
|
* @since BuddyPress (1.7.0)
|
|
*/
|
|
public function is_blogs() {
|
|
|
|
// Bail if not looking at a group
|
|
if ( ! bp_is_blogs_component() )
|
|
return;
|
|
|
|
// Bail if looking at a users sites
|
|
if ( bp_is_user() )
|
|
return;
|
|
|
|
// Blog Directory
|
|
if ( is_multisite() && ! bp_current_action() ) {
|
|
bp_update_is_directory( true, 'blogs' );
|
|
|
|
do_action( 'bp_blogs_screen_index' );
|
|
|
|
add_filter( 'bp_get_buddypress_template', array( $this, 'directory_template_hierarchy' ) );
|
|
add_action( 'bp_template_include_reset_dummy_post_data', array( $this, 'directory_dummy_post' ) );
|
|
add_filter( 'bp_replace_the_content', array( $this, 'directory_content' ) );
|
|
|
|
// Create blog
|
|
} elseif ( is_user_logged_in() && bp_blog_signup_enabled() ) {
|
|
add_filter( 'bp_get_buddypress_template', array( $this, 'create_template_hierarchy' ) );
|
|
add_action( 'bp_template_include_reset_dummy_post_data', array( $this, 'create_dummy_post' ) );
|
|
add_filter( 'bp_replace_the_content', array( $this, 'create_content' ) );
|
|
}
|
|
}
|
|
|
|
/** Directory *************************************************************/
|
|
|
|
/**
|
|
* Add template hierarchy to theme compat for the blog directory page.
|
|
*
|
|
* This is to mirror how WordPress has
|
|
* {@link https://codex.wordpress.org/Template_Hierarchy template hierarchy}.
|
|
*
|
|
* @since BuddyPress (1.8.0)
|
|
*
|
|
* @param string $templates The templates from
|
|
* bp_get_theme_compat_templates().
|
|
* @return array $templates Array of custom templates to look for.
|
|
*/
|
|
public function directory_template_hierarchy( $templates ) {
|
|
// Setup our templates based on priority
|
|
$new_templates = apply_filters( 'bp_template_hierarchy_blogs_create', array(
|
|
'blogs/index-directory.php'
|
|
) );
|
|
|
|
// Merge new templates with existing stack
|
|
// @see bp_get_theme_compat_templates()
|
|
$templates = array_merge( (array) $new_templates, $templates );
|
|
|
|
return $templates;
|
|
}
|
|
|
|
/**
|
|
* Update the global $post with directory data.
|
|
*
|
|
* @since BuddyPress (1.7.0)
|
|
*/
|
|
public function directory_dummy_post() {
|
|
|
|
// Title based on ability to create blogs
|
|
if ( is_user_logged_in() && bp_blog_signup_enabled() ) {
|
|
$title = __( 'Sites', 'buddypress' ) . ' <a class="button" href="' . trailingslashit( bp_get_root_domain() . '/' . bp_get_blogs_root_slug() . '/create' ) . '">' . __( 'Create a Sites', 'buddypress' ) . '</a>';
|
|
} else {
|
|
$title = __( 'Sites', 'buddypress' );
|
|
}
|
|
|
|
bp_theme_compat_reset_post( array(
|
|
'ID' => 0,
|
|
'post_title' => $title,
|
|
'post_author' => 0,
|
|
'post_date' => 0,
|
|
'post_content' => '',
|
|
'post_type' => 'bp_blogs',
|
|
'post_status' => 'publish',
|
|
'is_archive' => true,
|
|
'comment_status' => 'closed'
|
|
) );
|
|
}
|
|
|
|
/**
|
|
* Filter the_content with the groups index template part.
|
|
*
|
|
* @since BuddyPress (1.7.0)
|
|
*/
|
|
public function directory_content() {
|
|
return bp_buffer_template_part( 'blogs/index', null, false );
|
|
}
|
|
|
|
/** Create ****************************************************************/
|
|
|
|
/**
|
|
* Add custom template hierarchy to theme compat for the blog create page.
|
|
*
|
|
* This is to mirror how WordPress has
|
|
* {@link https://codex.wordpress.org/Template_Hierarchy template hierarchy}.
|
|
*
|
|
* @since BuddyPress (1.8.0)
|
|
*
|
|
* @param string $templates The templates from
|
|
* bp_get_theme_compat_templates().
|
|
* @return array $templates Array of custom templates to look for.
|
|
*/
|
|
public function create_template_hierarchy( $templates ) {
|
|
// Setup our templates based on priority
|
|
$new_templates = apply_filters( 'bp_template_hierarchy_blogs_create', array(
|
|
'blogs/index-create.php'
|
|
) );
|
|
|
|
// Merge new templates with existing stack
|
|
// @see bp_get_theme_compat_templates()
|
|
$templates = array_merge( (array) $new_templates, $templates );
|
|
|
|
return $templates;
|
|
}
|
|
|
|
/**
|
|
* Update the global $post with create screen data.
|
|
*
|
|
* @since BuddyPress (1.7.0)
|
|
*/
|
|
public function create_dummy_post() {
|
|
|
|
// Title based on ability to create blogs
|
|
if ( is_user_logged_in() && bp_blog_signup_enabled() ) {
|
|
$title = '<a class="button bp-title-button" href="' . trailingslashit( bp_get_root_domain() . '/' . bp_get_blogs_root_slug() ) . '">' . __( 'Sites', 'buddypress' ) . '</a> ' . __( 'Create a Site', 'buddypress' );
|
|
} else {
|
|
$title = __( 'Sites', 'buddypress' );
|
|
}
|
|
|
|
bp_theme_compat_reset_post( array(
|
|
'ID' => 0,
|
|
'post_title' => $title,
|
|
'post_author' => 0,
|
|
'post_date' => 0,
|
|
'post_content' => '',
|
|
'post_type' => 'bp_group',
|
|
'post_status' => 'publish',
|
|
'is_archive' => true,
|
|
'comment_status' => 'closed'
|
|
) );
|
|
}
|
|
|
|
/**
|
|
* Filter the_content with the create screen template part.
|
|
*
|
|
* @since BuddyPress (1.7.0)
|
|
*/
|
|
public function create_content() {
|
|
return bp_buffer_template_part( 'blogs/create', null, false );
|
|
}
|
|
}
|
|
new BP_Blogs_Theme_Compat();
|