Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/s-damian/damian-pagination-php
PHP Pagination Library - Open Source Paginator Package
https://github.com/s-damian/damian-pagination-php
paginate pagination pagination-generator pagination-library pagination-php paginator php-library php-package php-pagination php8 php80 php81 php82 php83
Last synced: 2 months ago
JSON representation
PHP Pagination Library - Open Source Paginator Package
- Host: GitHub
- URL: https://github.com/s-damian/damian-pagination-php
- Owner: s-damian
- License: mit
- Created: 2022-08-15T15:07:12.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-10-12T18:57:03.000Z (2 months ago)
- Last Synced: 2024-10-12T22:41:56.636Z (2 months ago)
- Topics: paginate, pagination, pagination-generator, pagination-library, pagination-php, paginator, php-library, php-package, php-pagination, php8, php80, php81, php82, php83
- Language: PHP
- Homepage:
- Size: 1.2 MB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# PHP Pagination Library - Open Source
[![Tests](https://github.com/s-damian/damian-pagination-php/actions/workflows/tests.yml/badge.svg)](https://github.com/s-damian/damian-pagination-php/actions/workflows/tests.yml)
[![Static analysis](https://github.com/s-damian/damian-pagination-php/actions/workflows/static-analysis.yml/badge.svg)](https://github.com/s-damian/damian-pagination-php/actions/workflows/static-analysis.yml)
[![Total Downloads](https://poser.pugx.org/s-damian/damian-pagination-php/downloads)](https://packagist.org/packages/s-damian/damian-pagination-php)
[![Latest Stable Version](https://poser.pugx.org/s-damian/damian-pagination-php/v/stable)](https://packagist.org/packages/s-damian/damian-pagination-php)
[![License](https://poser.pugx.org/s-damian/damian-pagination-php/license)](https://packagist.org/packages/s-damian/damian-pagination-php)## Damian Pagination PHP - Open Source Pagination
### Introduction - Damian Pagination PHP
Damian Pagination PHP is an open-source PHP library designed to provide simple yet comprehensive pagination functionality.
This pagination library is compatible with all PHP projects (with or without MVC frameworks) and is also compatible with Bootstrap 5 CSS.
### Key Features
- Simple library for **pagination**.
- Customizable **per page** options.
- Support for multiple **languages**.
- Compatible with **Bootstrap 5**.> Paginate easily without limits 🚀
### Basic Example
```php
paginate($countElements);$limit = $pagination->getLimit();
$offset = $pagination->getOffset();echo $pagination->render();
echo $pagination->perPageForm();
```### Author
This package is developed by [Stephen Damian](https://github.com/s-damian).
> ✨ If you find this package useful, please **star it** on the GitHub repository.
### Requirements
- PHP 8.0 || 8.1 || 8.2 || 8.3
## Summary
- [Introduction](#introduction)
- [Installation](#installation)
- [Pagination Instance Methods](#pagination-instance-methods)
- [Examples](#examples)
- [Simple Example](#simple-example)
- [Example With SQL Queries](#example-with-sql-queries)
- [Example With a List of Files of a Directory](#example-with-a-list-of-files-of-a-directory)
- [Instance Options](#instance-options)
- [Language Configuration](#language-configuration)
- [Support](#support)
- [License](#license)## Introduction
This Open Source pagination contains PHP files, and one CSS style sheet.
An example of a CSS style sheet is in `vendor/s-damian/damian-pagination-php/src/css` directory. You can edit them according to your needs.
This pagination library also allows you to generate a **per page** form. This will generate an HTML `` tag with a `` element and clickable options.
## Installation
### With Composer
```
composer require s-damian/damian-pagination-php
```### Without Composer
If you do not use Composer, you must manually require the necessary files before using this package. Example:
```php
paginate($countElements);$limit = $pagination->getLimit();
$offset = $pagination->getOffset();// Here your SQL query with $limit and $offset
// Then your listing of elements with a loop
echo $pagination->render();
echo $pagination->perPageForm();
```#### Example rendering of pagination with Bootstrap 5:
[![Damian Pagination PHP Bootstrap 5 Example](https://raw.githubusercontent.com/s-damian/medias/main/packages/damian-pagination-php-bootstrap-5-example.webp)](https://github.com/s-damian/larasort)
### Example With SQL Queries
```php
query($sql);
$result = $query->fetch();
return $result->nb;
}// Collect articles from DB
function findArticles($limit, $offset)
{
$sql = "SELECT * FROM articles LIMIT ? OFFSET ?";
$query = db()->prepare($sql);
$query->bindValue(1, $limit, PDO::PARAM_INT);
$query->bindValue(2, $offset, PDO::PARAM_INT);
$query->execute();return $query;
}// Creating an object Pagination
$pagination = new Pagination();// Paginate
$pagination->paginate(countArticles());$limit = $pagination->getLimit();
$offset = $pagination->getOffset();$articles = findArticles($limit, $offset);
// Show elements one by one that are retrieved from the database
foreach ($articles as $article) {
echo htmlspecialchars($article->title);
}// Show the Pagination
echo $pagination->render();
// Show the per page
echo $pagination->perPageForm();
```The `db()` function must be defined to return a database connection instance, such as PDO.
Depending on your needs, you can also use this library with your favorite ORM.
### Example With a List of Files of a Directory
```php
paginate($count);$limit = $pagination->getLimit();
$offset = $pagination->getOffset();// Listing
$files = array_slice($listFilesFromPath, $offset, $limit);// Show files one by one
foreach ($files as $file) {
echo $file;
}// Show the Pagination
echo $pagination->render();
// Show the per page
echo $pagination->perPageForm();
```## Instance Options
```php
50]);
// Is 15 by default// To change number of links alongside the current page:
$pagination = new Pagination(['number_links' => 10]);
// Is 5 by default// To change the choice to select potentially generate with perPageForm():
$pagination = new Pagination(['options_select' => [5, 10, 50, 100, 500, 'all']]);
// The value of 'options_select' must be an array.
// Only integers and 'all' are permitted.
// Options are [15, 30, 50, 100, 200, 300] by default.// To change the CSS style of the pagination (to another CSS class as default):
$pagination = new Pagination(['css_class_p' => 'name-css-class-of-pagination']);
// The CSS class name is by default "pagination".// To change the CSS style of the pagination active (to another CSS class as default):
$pagination = new Pagination(['css_class_link_active' => 'name-css-class-of-pagination']);
// The active CSS class name is by default "active".// To change the CSS style of a per page (select) (to another id as default):
$pagination = new Pagination(['css_id_pp' => 'name-css-id-of-per-page-form']);
// The CSS ID name is by default "per-page-form".// To use Bootstrap CSS:
$pagination = new Pagination(['css_class_p' => 'pagination']);
// The CSS class name is by default "block-pagination"
// We must put "pagination"
```## Language Configuration
You can change the default language, which is English ('en') by default.
Supported languages: `cn`, `de`, `ee`, `en`, `es`, `fr`, `it`, `jp`, `pt`, `ru`.
Set default language:
```php
"fr"]);
```## Support
If you discover a **bug** or a **security vulnerability**, please send a message to Stephen. Thank you.
All bugs and all security vulnerabilities will be promptly addressed.
## License
This project is licensed under the MIT License. See the [LICENSE](./LICENSE) file for more details.