0, 'post_title' => bp_get_directory_title( 'groups' ), 'post_author' => 0, 'post_date' => 0, 'post_content' => '', 'post_type' => 'page', 'post_status' => 'publish', 'is_page' => true, 'comment_status' => 'closed' ) ); } /** * Filter the_content with the groups index template part. * * @since 1.7.0 */ public function directory_content() { return bp_buffer_template_part( 'groups/index', null, false ); } /** Create ************************************************************/ /** * Add custom template hierarchy to theme compat for the group create page. * * This is to mirror how WordPress has * {@link https://codex.wordpress.org/Template_Hierarchy template hierarchy}. * * @since 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 ) { /** * Filters the Groups create page template hierarchy based on priority. * * @since 1.8.0 * * @param array $value Array of default template files to use. */ $new_templates = apply_filters( 'bp_template_hierarchy_groups_create', array( 'groups/index-create.php' ) ); // Merge new templates with existing stack. // @see bp_get_theme_compat_templates(). $templates = array_merge( $new_templates, $templates ); return $templates; } /** * Update the global $post with create screen data. * * @since 1.7.0 */ public function create_dummy_post() { $title = _x( 'Groups', 'Group creation page', 'buddypress' ); bp_theme_compat_reset_post( array( 'ID' => 0, 'post_title' => $title, 'post_author' => 0, 'post_date' => 0, 'post_content' => '', 'post_type' => 'page', 'post_status' => 'publish', 'is_page' => true, 'comment_status' => 'closed' ) ); } /** * Filter the_content with the create screen template part. * * @since 1.7.0 */ public function create_content() { return bp_buffer_template_part( 'groups/create', null, false ); } /** Single ************************************************************/ /** * Add custom template hierarchy to theme compat for group pages. * * This is to mirror how WordPress has * {@link https://codex.wordpress.org/Template_Hierarchy template hierarchy}. * * @since 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 single_template_hierarchy( $templates ) { // Setup some variables we're going to reference in our custom templates. $group = groups_get_current_group(); /** * Filters the Groups single pages template hierarchy based on priority. * * @since 1.8.0 * * @param array $value Array of default template files to use. */ $new_templates = apply_filters( 'bp_template_hierarchy_groups_single_item', array( 'groups/single/index-id-' . (int) bp_get_current_group_id() . '.php', 'groups/single/index-slug-' . sanitize_file_name( bp_get_current_group_slug() ) . '.php', 'groups/single/index-action-' . sanitize_file_name( bp_current_action() ) . '.php', 'groups/single/index-status-' . sanitize_file_name( $group->status ) . '.php', 'groups/single/index.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 single group data. * * @since 1.7.0 */ public function single_dummy_post() { bp_theme_compat_reset_post( array( 'ID' => 0, 'post_title' => bp_get_current_group_name(), 'post_author' => 0, 'post_date' => 0, 'post_content' => '', 'post_type' => 'page', 'post_status' => 'publish', 'is_page' => true, 'comment_status' => 'closed' ) ); } /** * Filter the_content with the single group template part. * * @since 1.7.0 */ public function single_content() { return bp_buffer_template_part( 'groups/single/home', null, false ); } }