PluginProbe
Photonic Gallery & Lightbox for Flickr, SmugMug & Others / 3.33
Photonic Gallery & Lightbox for Flickr, SmugMug & Others v3.33
3.36 3.35 3.34 3.33 2.19 2.20 2.21 2.22 2.23 2.24 2.25 2.26 2.27 2.28 2.29 2.30 2.31 2.32 2.33 2.34 2.40 2.41 2.42 2.43 2.44 All 141 releases
photonic / Layouts / Level_Two_Gallery.php

Level_Two_Gallery.php in Photonic Gallery & Lightbox for Flickr, SmugMug & Others 3.33, at Layouts/Level_Two_Gallery.php

20 lines 670 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 namespace Photonic_Plugin\Layouts;
3
4 use Photonic_Plugin\Components\Album_List;
5 use Photonic_Plugin\Platforms\Base;
6
7 interface Level_Two_Gallery {
8 /**
9 * Generates the HTML for a group of level-2 items, i.e. Photosets (Albums) and Galleries for Flickr, Albums for Google Photos,
10 * Albums for SmugMug, and Photosets (Galleries and Collections) for Zenfolio. No concept of albums
11 * exists in native WP and Instagram.
12 *
13 * @param Album_List $album_list
14 * @param array $short_code
15 * @param $module Base
16 * @return string
17 */
18 public function generate_level_2_gallery(Album_List $album_list, array $short_code, Base $module): string;
19 }
20