# photonic/3.34/Platforms/Pageable.php

Photonic Gallery &amp; Lightbox for Flickr, SmugMug &amp; Others, version 3.34. 12 lines.

- Page: https://pluginprobe.com/plugins/photonic/3.34/code/Platforms/Pageable.php
- Raw: https://pluginprobe.com/plugins/photonic/3.34/raw/Platforms/Pageable.php
- Modified: 2023-12-05T00:10:08+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/photonic/3.34/code/Platforms/Pageable.php#L10-L20`.

```php
<?php

namespace Photonic_Plugin\Platforms;

use Photonic_Plugin\Components\Pagination;

require_once PHOTONIC_PATH . '/Components/Pagination.php';

interface Pageable {
	public function get_pagination($entity, array $short_code = []): Pagination;
}

```
