Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
04/28/2015 01:52:18 AM (10 years ago)
Author:
tw2113
Message:

Adds hooks documentation for the members template files.

Fixes #5948.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/bp-templates/bp-legacy/buddypress/members/single/profile/change-avatar.php

    r9757 r9814  
    11<h4><?php _e( 'Change Profile Photo', 'buddypress' ); ?></h4>
    22
    3 <?php do_action( 'bp_before_profile_avatar_upload_content' ); ?>
     3<?php
     4
     5/**
     6 * Fires before the display of profile avatar upload content.
     7 *
     8 * @since BuddyPress (1.1.0)
     9 */
     10do_action( 'bp_before_profile_avatar_upload_content' ); ?>
    411
    512<?php if ( !(int)bp_get_option( 'bp-disable-avatar-uploads' ) ) : ?>
     
    6572<?php endif; ?>
    6673
    67 <?php do_action( 'bp_after_profile_avatar_upload_content' ); ?>
     74<?php
     75
     76/**
     77 * Fires after the display of profile avatar upload content.
     78 *
     79 * @since BuddyPress (1.1.0)
     80 */
     81do_action( 'bp_after_profile_avatar_upload_content' ); ?>
Note: See TracChangeset for help on using the changeset viewer.