- Timestamp:
- 09/27/2015 06:04:27 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-templates/bp-legacy/buddypress/groups/create.php
r10129 r10150 1 1 <?php 2 /** 3 * BuddyPress - Groups Create 4 * 5 * @package BuddyPress 6 * @subpackage bp-legacy 7 */ 2 8 3 9 /** 4 10 * Fires at the top of the groups creation template file. 5 11 * 6 * @since BuddyPress (1.7.0)12 * @since 1.7.0 7 13 */ 8 14 do_action( 'bp_before_create_group_page' ); ?> … … 15 21 * Fires before the display of group creation content. 16 22 * 17 * @since BuddyPress (1.6.0)23 * @since 1.6.0 18 24 */ 19 25 do_action( 'bp_before_create_group_content_template' ); ?> … … 26 32 * Fires before the display of group creation. 27 33 * 28 * @since BuddyPress (1.2.0)34 * @since 1.2.0 29 35 */ 30 36 do_action( 'bp_before_create_group' ); ?> … … 53 59 * Fires before the display of the group details creation step. 54 60 * 55 * @since BuddyPress (1.1.0)61 * @since 1.1.0 56 62 */ 57 63 do_action( 'bp_before_group_details_creation_step' ); ?> … … 72 78 * Fires after the display of the group details creation step. 73 79 * 74 * @since BuddyPress (1.1.0)80 * @since 1.1.0 75 81 */ 76 82 do_action( 'bp_after_group_details_creation_step' ); … … 89 95 * Fires before the display of the group settings creation step. 90 96 * 91 * @since BuddyPress (1.1.0)97 * @since 1.1.0 92 98 */ 93 99 do_action( 'bp_before_group_settings_creation_step' ); ?> … … 163 169 * Fires after the display of the group settings creation step. 164 170 * 165 * @since BuddyPress (1.1.0)171 * @since 1.1.0 166 172 */ 167 173 do_action( 'bp_after_group_settings_creation_step' ); ?> … … 179 185 * Fires before the display of the group avatar creation step. 180 186 * 181 * @since BuddyPress (1.1.0)187 * @since 1.1.0 182 188 */ 183 189 do_action( 'bp_before_group_avatar_creation_step' ); ?> … … 207 213 * Load the Avatar UI templates 208 214 * 209 * @since BuddyPress (2.3.0)215 * @since 2.3.0 210 216 */ 211 217 bp_avatar_get_templates(); ?> … … 239 245 * Fires after the display of the group avatar creation step. 240 246 * 241 * @since BuddyPress (1.1.0)247 * @since 1.1.0 242 248 */ 243 249 do_action( 'bp_after_group_avatar_creation_step' ); ?> … … 255 261 * Fires before the display of the group invites creation step. 256 262 * 257 * @since BuddyPress (1.1.0)263 * @since 1.1.0 258 264 */ 259 265 do_action( 'bp_before_group_invites_creation_step' ); ?> … … 323 329 * Fires after the display of the group invites creation step. 324 330 * 325 * @since BuddyPress (1.1.0)331 * @since 1.1.0 326 332 */ 327 333 do_action( 'bp_after_group_invites_creation_step' ); ?> … … 336 342 * Allows plugins to add custom group creation steps. 337 343 * 338 * @since BuddyPress (1.1.0)344 * @since 1.1.0 339 345 */ 340 346 do_action( 'groups_custom_create_steps' ); ?> … … 345 351 * Fires before the display of the group creation step buttons. 346 352 * 347 * @since BuddyPress (1.1.0)353 * @since 1.1.0 348 354 */ 349 355 do_action( 'bp_before_group_creation_step_buttons' ); ?> … … 389 395 * Fires after the display of the group creation step buttons. 390 396 * 391 * @since BuddyPress (1.1.0)397 * @since 1.1.0 392 398 */ 393 399 do_action( 'bp_after_group_creation_step_buttons' ); ?> … … 401 407 * Fires and displays the groups directory content. 402 408 * 403 * @since BuddyPress (1.1.0)409 * @since 1.1.0 404 410 */ 405 411 do_action( 'bp_directory_groups_content' ); ?> … … 412 418 * Fires after the display of group creation. 413 419 * 414 * @since BuddyPress (1.2.0)420 * @since 1.2.0 415 421 */ 416 422 do_action( 'bp_after_create_group' ); ?> … … 423 429 * Fires after the display of group creation content. 424 430 * 425 * @since BuddyPress (1.6.0)431 * @since 1.6.0 426 432 */ 427 433 do_action( 'bp_after_create_group_content_template' ); ?> … … 434 440 * Fires at the bottom of the groups creation template file. 435 441 * 436 * @since BuddyPress (1.7.0)442 * @since 1.7.0 437 443 */ 438 444 do_action( 'bp_after_create_group_page' ); ?>
Note: See TracChangeset
for help on using the changeset viewer.