Skip to:
Content

BuddyPress.org

Ticket #5287: 5287.02.diff

File 5287.02.diff, 1.6 KB (added by imath, 11 years ago)
  • bp-groups/bp-groups-admin.php

    diff --git bp-groups/bp-groups-admin.php bp-groups/bp-groups-admin.php
    index 4a4b2bc..e1c7ddd 100644
    class BP_Groups_List_Table extends WP_List_Table { 
    12971297         * @return array Array of column titles.
    12981298         */
    12991299        function get_columns() {
    1300                 return array(
     1300                return apply_filters( 'bp_groups_list_table_get_columns', array(
    13011301                        'cb'          => '<input name type="checkbox" />',
    13021302                        'comment'     => _x( 'Name', 'Groups admin Group Name column header',               'buddypress' ),
    13031303                        'description' => _x( 'Description', 'Groups admin Group Description column header', 'buddypress' ),
    13041304                        'status'      => _x( 'Status', 'Groups admin Privacy Status column header',         'buddypress' ),
    13051305                        'members'     => _x( '# Members', 'Groups admin Members column header',             'buddypress' ),
    13061306                        'last_active' => _x( 'Last Active', 'Groups admin Last Active column header',       'buddypress' )
    1307                 );
     1307                ) );
    13081308        }
    13091309
    13101310        /**
    class BP_Groups_List_Table extends WP_List_Table { 
    14801480                $last_active = groups_get_groupmeta( $item['id'], 'last_activity' );
    14811481                echo apply_filters_ref_array( 'bp_groups_admin_get_group_last_active', array( $last_active, $item ) );
    14821482        }
     1483
     1484        /**
     1485         * Allow plugins to add their costum column.
     1486         *
     1487         * @since BuddyPress 2.0.0
     1488         *
     1489         * @param array Information about the current row.
     1490         * @param string the column name.
     1491         */
     1492        function column_default( $item = array(), $column_name = '' ) {
     1493                return apply_filters( 'bp_groups_admin_get_group_custom_column', '', $column_name, $item );
     1494        }
    14831495}