| 1 |
<?php |
| 2 |
namespace Photonic_Plugin\Platforms; |
| 3 |
|
| 4 |
use Photonic_Plugin\Components\Pagination; |
| 5 |
|
| 6 |
require_once PHOTONIC_PATH . '/Components/Album.php'; |
| 7 |
require_once PHOTONIC_PATH . '/Components/Album_List.php'; |
| 8 |
require_once PHOTONIC_PATH . '/Components/Pagination.php'; |
| 9 |
|
| 10 |
interface Level_Two_Module { |
| 11 |
public function build_level_2_objects($objects_or_response, array $short_code, array $filter_list = [], array $options = [], ?Pagination &$pagination = null): array; |
| 12 |
} |
| 13 |
|