Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
04/16/2015 10:36:38 PM (10 years ago)
Author:
imath
Message:

Avatar UI: Add Backbone templates and adapt the legacy avatar templates.

The Backone templates will be in a new "assets" sub directory of bp-templates\bp-legacy\buddypress. For the introduction of the feature we are advising you *to not override* these specific templates from your theme. The underscore in each sub folder names of this "assets" directory is informing we wish to restrict the content of the sub folder to Core use only.

We are introducing a new template tag to load these Backbone templates : bp_avatar_get_templates(). We recommand that you update the avatar templates of your theme if you are overriding groups/create, groups/single/admin or members/single/profile/change-avatar once 2.3 will be released. If this new template tag is not into the template, then bp_avatar_template_check() will try to load them using template hooks.

Props johnjamesjacoby, hnla, r-a-y.

See #6290

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/bp-core/bp-core-avatars.php

    r9755 r9757  
    14381438    return apply_filters( 'bp_avatar_use_webcam', true );
    14391439}
     1440
     1441/**
     1442 * Template function to load the Avatar UI javascript templates
     1443 *
     1444 * @since  BuddyPress (2.3.0)
     1445 */
     1446function bp_avatar_get_templates() {
     1447    if ( ! bp_avatar_is_front_edit() ) {
     1448        return;
     1449    }
     1450
     1451    bp_attachments_get_template_part( 'avatars/index' );
     1452}
     1453
     1454/**
     1455 * Trick to check if the theme's BuddyPress templates are up to date
     1456 *
     1457 * If the "avatar templates" are not including the new template tag, this will
     1458 * help users to get the avatar UI and inform the most curious that their
     1459 * templates are out of date.
     1460 *
     1461 * @since  BuddyPress (2.3.0)
     1462 */
     1463function bp_avatar_template_check() {
     1464    if ( ! bp_avatar_is_front_edit() ) {
     1465        return;
     1466    }
     1467
     1468    if ( ! did_action( 'bp_attachments_avatar_check_template' ) ) {
     1469        bp_attachments_get_template_part( 'avatars/index' );
     1470    }
     1471}
Note: See TracChangeset for help on using the changeset viewer.