Changeset 5714
- Timestamp:
- 02/11/2012 05:01:43 AM (13 years ago)
- Location:
- trunk/bp-groups
- Files:
-
- 10 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bp-groups/bp-groups-actions.php
r5689 r5714 2 2 3 3 /** 4 * BuddyPress Groups Acti vity & Notification Functions4 * BuddyPress Groups Actions 5 5 * 6 6 * Action functions are exactly the same as screen functions, however they do not -
trunk/bp-groups/bp-groups-activity.php
r5689 r5714 2 2 3 3 /** 4 * BuddyPress Groups Activity & NotificationFunctions4 * BuddyPress Groups Activity Functions 5 5 * 6 * These functions handle the recording, deleting and formatting of activity and7 * notificationsfor 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. 8 8 * 9 9 * @package BuddyPress 10 * @subpackage Groups 10 * @subpackage GroupsActivity 11 11 */ 12 12 -
trunk/bp-groups/bp-groups-classes.php
r5713 r5714 1 1 <?php 2 3 /** 4 * BuddyPress Groups Classes 5 * 6 * @package BuddyPress 7 * @subpackage GroupsClasses 8 */ 9 2 10 // Exit if accessed directly 3 11 if ( !defined( 'ABSPATH' ) ) exit; -
trunk/bp-groups/bp-groups-filters.php
r5689 r5714 1 1 <?php 2 3 /** 4 * BuddyPress Groups Filters 5 * 6 * @package BuddyPress 7 * @subpackage GroupsFilters 8 */ 9 2 10 // Exit if accessed directly 3 11 if ( !defined( 'ABSPATH' ) ) exit; -
trunk/bp-groups/bp-groups-functions.php
r5689 r5714 1 1 <?php 2 2 3 /** 4 * BuddyPress Groups Functions 5 * 3 6 * Functions are where all the magic happens in BuddyPress. They will 4 7 * handle the actual saving or manipulation of information. Usually they will 5 8 * hand off to a database class for data access, then return 6 9 * true or false on success or failure. 10 * 11 * @package BuddyPress 12 * @subpackage GroupsFunctions 7 13 */ 8 14 -
trunk/bp-groups/bp-groups-loader.php
r5705 r5714 1 1 <?php 2 2 3 /** 3 4 * BuddyPress Groups Loader … … 8 9 * 9 10 * @package BuddyPress 10 * @subpackage Groups Core11 * @subpackage GroupsLoader 11 12 */ 12 13 -
trunk/bp-groups/bp-groups-notifications.php
r5689 r5714 1 1 <?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 2 13 // Exit if accessed directly 3 14 if ( !defined( 'ABSPATH' ) ) exit; -
trunk/bp-groups/bp-groups-screens.php
r5689 r5714 1 1 <?php 2 /******************************************************************************** 3 * Screen Functions 2 3 /** 4 * BuddyPress Groups Screen Functions 4 5 * 5 6 * Screen functions are the controllers of BuddyPress. They will execute when their 6 7 * specific URL is caught. They will first save or manipulate data using business 7 8 * functions, then pass on the user to a template file. 9 * 10 * @package BuddyPress 11 * @subpackage GroupsScreens 8 12 */ 9 13 -
trunk/bp-groups/bp-groups-template.php
r5704 r5714 1 1 <?php 2 3 /** 4 * BuddyPress Groups Template Functions 5 * 6 * @package BuddyPress 7 * @subpackage GroupsTemplate 8 */ 9 2 10 // Exit if accessed directly 3 11 if ( !defined( 'ABSPATH' ) ) exit; -
trunk/bp-groups/bp-groups-widgets.php
r5689 r5714 1 1 <?php 2 3 /** 4 * BuddyPress Groups Widgets 5 * 6 * @package BuddyPress 7 * @subpackage GroupsWidgets 8 */ 9 2 10 // Exit if accessed directly 3 11 if ( !defined( 'ABSPATH' ) ) exit;
Note: See TracChangeset
for help on using the changeset viewer.