HEX
Server: Apache
System: Linux az1-ss100.a2hosting.com 4.18.0-553.16.1.lve.1.el8.x86_64 #1 SMP Mon Sep 23 20:16:18 UTC 2024 x86_64
User: crypto73 (2057)
PHP: 7.4.33
Disabled: NONE
Upload Files
File: /home/crypto73/www/wp-content/plugins/duplicator-pro/classes/class.package.pagination.php
<?php
if ( ! class_exists ( 'DUP_PRO_WP_List_Table' ) ) {
    require_once dirname(__FILE__) . '/class.wp.list.table.php';
}

/**
 * List table class
 */
class DUP_PRO_Package_Pagination extends DUP_PRO_WP_List_Table {
    function get_per_page(){
        return $this->get_items_per_page('duplicator_pro_opts_per_page');
    }
    function display_pagination($total_items,$per_page=10) {
        $this->set_pagination_args( array(
            'total_items' => $total_items,
            'per_page'    => $per_page
        ) );
        $which='top';
        $this->pagination( $which );
    }
}