Changeset 10100 for trunk/src/bp-blogs/bp-blogs-screens.php
- Timestamp:
- 09/12/2015 06:03:18 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-blogs/bp-blogs-screens.php
r10011 r10100 1 1 <?php 2 3 2 /** 4 3 * BuddyPress Blogs Screens. … … 21 20 * Fires right before the loading of the My Blogs screen template file. 22 21 * 23 * @since BuddyPress (1.0.0)22 * @since 1.0.0 24 23 */ 25 24 do_action( 'bp_blogs_screen_my_blogs' ); … … 42 41 * Fires right before the loading of the Create A Blog screen template file. 43 42 * 44 * @since BuddyPress (1.0.0)43 * @since 1.0.0 45 44 */ 46 45 do_action( 'bp_blogs_screen_create_a_blog' ); … … 60 59 * Fires right before the loading of the top-level Blogs screen template file. 61 60 * 62 * @since BuddyPress (1.0.0)61 * @since 1.0.0 63 62 */ 64 63 do_action( 'bp_blogs_screen_index' ); … … 77 76 * group template parts to the_title and the_content areas of a theme. 78 77 * 79 * @since BuddyPress (1.7.0)78 * @since 1.7.0 80 79 */ 81 80 class BP_Blogs_Theme_Compat { … … 84 83 * Set up theme compatibility for the Blogs component. 85 84 * 86 * @since BuddyPress (1.7.0)85 * @since 1.7.0 87 86 */ 88 87 public function __construct() { … … 93 92 * Are we looking at something that needs Blogs theme compatibility? 94 93 * 95 * @since BuddyPress (1.7.0)94 * @since 1.7.0 96 95 */ 97 96 public function is_blogs() { … … 113 112 * before the actions and filters are added. 114 113 * 115 * @since BuddyPress (1.5.0)114 * @since 1.5.0 116 115 */ 117 116 do_action( 'bp_blogs_screen_index' ); … … 137 136 * {@link https://codex.wordpress.org/Template_Hierarchy template hierarchy}. 138 137 * 139 * @since BuddyPress (1.8.0)138 * @since 1.8.0 140 139 * 141 140 * @param string $templates The templates from bp_get_theme_compat_templates(). … … 148 147 * Filters the custom templates used for theme compat with the blog directory page. 149 148 * 150 * @since BuddyPress (1.8.0)149 * @since 1.8.0 151 150 * 152 151 * @param array $value Array of template paths to add to template list to look for. … … 166 165 * Update the global $post with directory data. 167 166 * 168 * @since BuddyPress (1.7.0)167 * @since 1.7.0 169 168 */ 170 169 public function directory_dummy_post() { … … 186 185 * Filter the_content with the groups index template part. 187 186 * 188 * @since BuddyPress (1.7.0)187 * @since 1.7.0 189 188 */ 190 189 public function directory_content() { … … 200 199 * {@link https://codex.wordpress.org/Template_Hierarchy template hierarchy}. 201 200 * 202 * @since BuddyPress (1.8.0)201 * @since 1.8.0 203 202 * 204 203 * @param string $templates The templates from bp_get_theme_compat_templates(). … … 211 210 * Filters the custom templates used for theme compat with the blog create page. 212 211 * 213 * @since BuddyPress (1.8.0)212 * @since 1.8.0 214 213 * 215 214 * @param array $value Array of template paths to add to template list to look for. … … 229 228 * Update the global $post with create screen data. 230 229 * 231 * @since BuddyPress (1.7.0)230 * @since 1.7.0 232 231 */ 233 232 public function create_dummy_post() { … … 256 255 * Filter the_content with the create screen template part. 257 256 * 258 * @since BuddyPress (1.7.0)257 * @since 1.7.0 259 258 */ 260 259 public function create_content() {
Note: See TracChangeset
for help on using the changeset viewer.