# photonic/2.42/Layouts/Level_Two_Gallery.php

Photonic Gallery &amp; Lightbox for Flickr, SmugMug &amp; Others, version 2.42. 19 lines.

- Page: https://pluginprobe.com/plugins/photonic/2.42/code/Layouts/Level_Two_Gallery.php
- Raw: https://pluginprobe.com/plugins/photonic/2.42/raw/Layouts/Level_Two_Gallery.php
- Modified: 2020-05-06T23:38:12+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/2.42/code/Layouts/Level_Two_Gallery.php#L10-L20`.

```php
<?php
namespace Photonic_Plugin\Layouts;

use Photonic_Plugin\Modules\Core;

interface Level_Two_Gallery {
	/**
	 * Generates the HTML for a group of level-2 items, i.e. Photosets (Albums) and Galleries for Flickr, Albums for Google Photos,
	 * Albums for SmugMug, and Photosets (Galleries and Collections) for Zenfolio. No concept of albums
	 * exists in native WP and Instagram.
	 *
	 * @param $objects
	 * @param $options
	 * @param $short_code
	 * @param $module Core
	 * @return string
	 */
	function generate_level_2_gallery($objects, $options, $short_code, $module);
}
```
