diff --git a/bl-kernel/helpers/paginator.class.php b/bl-kernel/helpers/paginator.class.php index 7a533f6e..f8b83ddc 100644 --- a/bl-kernel/helpers/paginator.class.php +++ b/bl-kernel/helpers/paginator.class.php @@ -190,6 +190,63 @@ class Paginator { return $html; } + public static function bootstrap_numberedPageHTML($class = '') { + global $L; + $maxDistance = 2; + + if (self::get('numberOfPages') <= 1) { + return ""; + } + + $html = ''; + + return $html; + } + /* * Bootstrap Pagination */