bp_get_folder_pagination_count()

Return the folder pagination count.

Description

Return

(string) The pagination text.

Source

File: bp-document/bp-document-template.php

1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
function bp_get_folder_pagination_count() {
    global $document_folder_template;
 
    $start_num = intval( ( $document_folder_template->pag_page - 1 ) * $document_folder_template->pag_num ) + 1;
    $from_num  = bp_core_number_format( $start_num );
    $to_num    = bp_core_number_format( ( $start_num + ( $document_folder_template->pag_num - 1 ) > $document_folder_template->total_folder_count ) ? $document_folder_template->total_folder_count : $start_num + ( $document_folder_template->pag_num - 1 ) );
    $total     = bp_core_number_format( $document_folder_template->total_folder_count );
 
    $message = sprintf( _n( 'Viewing 1 item', 'Viewing %1$s - %2$s of %3$s items', $document_folder_template->total_document_count, 'buddyboss' ), $from_num, $to_num, $total );
 
    return $message;
}

Changelog

Changelog
Version Description
BuddyBoss 1.4.0 Introduced.

Questions?

We're always happy to help with code or other questions you might have! Search our developer docs, contact support, or connect with our sales team.