get(UserUIOptions::VAL_PACKAGES_PER_PAGE); } /** * Display pagination * * @param int $total_items Total items * @param int $per_page Per page * * @return void */ public 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); } }