Skip to:
Content

BuddyPress.org

Changeset 5714


Ignore:
Timestamp:
02/11/2012 05:01:43 AM (13 years ago)
Author:
johnjamesjacoby
Message:

Remove unneeded globals and clean up some code in Groups component. See #3989.

Location:
trunk/bp-groups
Files:
10 edited

Legend:

Unmodified
Added
Removed
  • trunk/bp-groups/bp-groups-actions.php

    r5689 r5714  
    22
    33/**
    4  * BuddyPress Groups Activity & Notification Functions
     4 * BuddyPress Groups Actions
    55 *
    66 * Action functions are exactly the same as screen functions, however they do not
  • trunk/bp-groups/bp-groups-activity.php

    r5689 r5714  
    22
    33/**
    4  * BuddyPress Groups Activity & Notification Functions
     4 * BuddyPress Groups Activity Functions
    55 *
    6  * These functions handle the recording, deleting and formatting of activity and
    7  * notifications for the user and for this specific component.
     6 * These functions handle the recording, deleting and formatting of activity
     7 * for the user and for this specific component.
    88 *
    99 * @package BuddyPress
    10  * @subpackage Groups
     10 * @subpackage GroupsActivity
    1111 */
    1212
  • trunk/bp-groups/bp-groups-classes.php

    r5713 r5714  
    11<?php
     2
     3/**
     4 * BuddyPress Groups Classes
     5 *
     6 * @package BuddyPress
     7 * @subpackage GroupsClasses
     8 */
     9
    210// Exit if accessed directly
    311if ( !defined( 'ABSPATH' ) ) exit;
  • trunk/bp-groups/bp-groups-filters.php

    r5689 r5714  
    11<?php
     2
     3/**
     4 * BuddyPress Groups Filters
     5 *
     6 * @package BuddyPress
     7 * @subpackage GroupsFilters
     8 */
     9
    210// Exit if accessed directly
    311if ( !defined( 'ABSPATH' ) ) exit;
  • trunk/bp-groups/bp-groups-functions.php

    r5689 r5714  
    11<?php
     2
    23/**
     4 * BuddyPress Groups Functions
     5 *
    36 * Functions are where all the magic happens in BuddyPress. They will
    47 * handle the actual saving or manipulation of information. Usually they will
    58 * hand off to a database class for data access, then return
    69 * true or false on success or failure.
     10 *
     11 * @package BuddyPress
     12 * @subpackage GroupsFunctions
    713 */
    814
  • trunk/bp-groups/bp-groups-loader.php

    r5705 r5714  
    11<?php
     2
    23/**
    34 * BuddyPress Groups Loader
     
    89 *
    910 * @package BuddyPress
    10  * @subpackage Groups Core
     11 * @subpackage GroupsLoader
    1112 */
    1213
  • trunk/bp-groups/bp-groups-notifications.php

    r5689 r5714  
    11<?php
     2
     3/**
     4 * BuddyPress Groups Notification Functions
     5 *
     6 * These functions handle the recording, deleting and formatting of notifications
     7 * for the user and for this specific component.
     8 *
     9 * @package BuddyPress
     10 * @subpackage GroupsActivity
     11 */
     12
    213// Exit if accessed directly
    314if ( !defined( 'ABSPATH' ) ) exit;
  • trunk/bp-groups/bp-groups-screens.php

    r5689 r5714  
    11<?php
    2 /********************************************************************************
    3  * Screen Functions
     2
     3/**
     4 * BuddyPress Groups Screen Functions
    45 *
    56 * Screen functions are the controllers of BuddyPress. They will execute when their
    67 * specific URL is caught. They will first save or manipulate data using business
    78 * functions, then pass on the user to a template file.
     9 *
     10 * @package BuddyPress
     11 * @subpackage GroupsScreens
    812 */
    913
  • trunk/bp-groups/bp-groups-template.php

    r5704 r5714  
    11<?php
     2
     3/**
     4 * BuddyPress Groups Template Functions
     5 *
     6 * @package BuddyPress
     7 * @subpackage GroupsTemplate
     8 */
     9
    210// Exit if accessed directly
    311if ( !defined( 'ABSPATH' ) ) exit;
  • trunk/bp-groups/bp-groups-widgets.php

    r5689 r5714  
    11<?php
     2
     3/**
     4 * BuddyPress Groups Widgets
     5 *
     6 * @package BuddyPress
     7 * @subpackage GroupsWidgets
     8 */
     9
    210// Exit if accessed directly
    311if ( !defined( 'ABSPATH' ) ) exit;
Note: See TracChangeset for help on using the changeset viewer.