Changeset 9833 for trunk/src/bp-activity/bp-activity-admin.php
- Timestamp:
- 05/03/2015 06:51:25 PM (11 years ago)
- File:
-
- 1 edited
-
trunk/src/bp-activity/bp-activity-admin.php (modified) (13 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-activity/bp-activity-admin.php
r9819 r9833 53 53 * 54 54 * @param array $custom_menus The list of top-level BP menu items. 55 * 55 56 * @return array $custom_menus List of top-level BP menu items, with Activity added 56 57 */ … … 139 140 * @since BuddyPress (1.6.0) 140 141 * 141 * @param string $value Will always be false unless another plugin filters it 142 * first. 143 * @param string $option Screen option name. 142 * @param string $value Will always be false unless another plugin filters it first. 143 * @param string $option Screen option name. 144 144 * @param string $new_value Screen option form value. 145 * 145 146 * @return string Option value. False to abandon update. 146 147 */ … … 162 163 * @since BuddyPress (1.6.0) 163 164 * 165 * @param array $hidden Array of items to hide. 164 166 * @param WP_Screen $screen Screen identifier. 167 * 165 168 * @return array Hidden Meta Boxes. 166 169 */ … … 194 197 * @since BuddyPress (1.6.0) 195 198 * 196 * @global object $bpBuddyPress global settings.199 * @global object $bp BuddyPress global settings. 197 200 * @global BP_Activity_List_Table $bp_activity_list_table Activity screen list table. 198 201 */ … … 412 415 * @since BuddyPress (1.6.0) 413 416 * 414 * @param array Array holding spam, not spam, deleted counts, error IDs.415 * @param string $redirect_to URL to redirect to.417 * @param array $value Array holding spam, not spam, deleted counts, error IDs. 418 * @param string $redirect_to URL to redirect to. 416 419 * @param array $activity_ids Original array of activity IDs. 417 420 */ … … 640 643 * @since BuddyPress (1.6.0) 641 644 * 642 * @param array Array holding single activity object.645 * @param array $value Array holding single activity object that was passed by reference. 643 646 */ 644 647 do_action_ref_array( 'bp_activity_admin_edit', array( &$activity ) ); ?> … … 889 892 * @since BuddyPress (1.6.0) 890 893 * 891 * @global BP_Activity_List_Table $bp_activity_list_table Activity screen list 892 * table. 893 * @global string $plugin_page The current plugin page. 894 * @global BP_Activity_List_Table $bp_activity_list_table Activity screen list table. 895 * @global string $plugin_page The current plugin page. 894 896 */ 895 897 function bp_activity_admin_index() { … … 1289 1291 * 1290 1292 * @param string $url_base Current URL base for view. 1291 * @param string $view Current view being displayed.1293 * @param string $view Current view being displayed. 1292 1294 */ 1293 1295 do_action( 'bp_activity_list_table_get_views', $url_base, $this->view ); ?> … … 1522 1524 * 1523 1525 * @param array $actions Array of available actions user could use. 1524 * @param array $item Current item being added to page.1526 * @param array $item Current item being added to page. 1525 1527 */ 1526 1528 $actions = apply_filters( 'bp_activity_admin_comment_row_actions', array_filter( $actions ), $item ); … … 1574 1576 * @since BuddyPress (1.6.0) 1575 1577 * 1576 * @param array Array of default activity types.1577 * @param array $item Current item being displayed.1578 * @param array $value Array of default activity types. 1579 * @param array $item Current item being displayed. 1578 1580 */ 1579 1581 if ( empty( $item['item_id'] ) || ! in_array( $item['type'], apply_filters( 'bp_activity_admin_root_activity_types', array( 'activity_comment' ), $item ) ) ) { … … 1606 1608 * 1607 1609 * @param int $activity_id Activity ID to retrieve User ID for. 1610 * 1608 1611 * @return int User ID of the activity item in question. 1609 1612 */ … … 1646 1649 * 1647 1650 * @param array $item An array version of the BP_Activity_Activity object. 1651 * 1648 1652 * @return bool 1649 1653 */ … … 1710 1714 * 1711 1715 * @param array $tree Source array. 1716 * 1712 1717 * @return array Flattened array. 1713 1718 */
Note: See TracChangeset
for help on using the changeset viewer.