├── .gitignore ├── LICENSE ├── README.md ├── composer.json ├── img └── widget.png ├── src ├── data │ └── Pagination.php └── widgets │ ├── Pagination.php │ └── views │ ├── bootstrap.php │ └── simple.php └── test ├── _config.php └── test.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yidas/php-pagination/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yidas/php-pagination/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yidas/php-pagination/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yidas/php-pagination/HEAD/composer.json -------------------------------------------------------------------------------- /img/widget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yidas/php-pagination/HEAD/img/widget.png -------------------------------------------------------------------------------- /src/data/Pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yidas/php-pagination/HEAD/src/data/Pagination.php -------------------------------------------------------------------------------- /src/widgets/Pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yidas/php-pagination/HEAD/src/widgets/Pagination.php -------------------------------------------------------------------------------- /src/widgets/views/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yidas/php-pagination/HEAD/src/widgets/views/bootstrap.php -------------------------------------------------------------------------------- /src/widgets/views/simple.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yidas/php-pagination/HEAD/src/widgets/views/simple.php -------------------------------------------------------------------------------- /test/_config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yidas/php-pagination/HEAD/test/_config.php -------------------------------------------------------------------------------- /test/test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yidas/php-pagination/HEAD/test/test.php --------------------------------------------------------------------------------