# photonic/3.37/Core/Template.php

Photonic Gallery &amp; Lightbox for Flickr, SmugMug &amp; Others, version 3.37. 117 lines.

- Page: https://pluginprobe.com/plugins/photonic/3.37/code/Core/Template.php
- Raw: https://pluginprobe.com/plugins/photonic/3.37/raw/Core/Template.php
- Modified: 2026-09-24T16:02:38+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.37/code/Core/Template.php#L10-L20`.

```php
<?php

namespace Photonic_Plugin\Core;

/**
 * Class Template
 * Used for cases where clicking on an album link opens a Photonic gallery on its own page. This is triggered when the shortcode attribute
 * <code>popup='page'</code> is set
 */
class Template {
	public function __construct() {
		add_filter('the_content', [&$this, 'load_gallery'], 100);
		add_filter('the_title', [&$this, 'set_header_title'], 10, 2);

		/*
		add_filter('wp_title', [&$this, 'set_meta_title'], 10, 3);
		if (current_theme_supports('title-tag')) {
			add_filter('pre_get_document_title', [&$this, 'set_meta_title'], 10, 1);
		}
		*/
	}

	/**
	 * Changes the title of the template page to the title of the album being displayed.
	 *
	 * @param $title
	 * @param $id
	 * @return string|void
	 */
	public function set_header_title($title, $id = null) {
		global $photonic_page_title, $photonic_gallery_template_page;
		if (!empty($id)) {
			if (!empty($photonic_gallery_template_page) && is_page($photonic_gallery_template_page) && 'replace-if-available' === $photonic_page_title && absint($photonic_gallery_template_page) === absint($id)) {
				if (isset($_REQUEST['photonic_gallery_title'])) { // phpcs:ignore WordPress.Security.NonceVerification
					return wptexturize(stripslashes_deep(wp_kses_data($_REQUEST['photonic_gallery_title']))); // phpcs:ignore WordPress.Security.NonceVerification
				}
			}
		}
		return $title;
	}

	/**
	 * Changes the title of the template page to the title of the album being displayed.
	 *
	 * @param        $title
	 * @param string $seperator
	 * @param string $location
	 * @return string|void
	 */
	public function set_meta_title($title, $seperator = ' &ndash; ', $location = 'right') {
		global $photonic_page_meta_title, $photonic_gallery_template_page;
		$id = get_queried_object_id();

		if (!empty($_REQUEST['photonic_gallery_title']) && !empty($photonic_gallery_template_page) && is_page($photonic_gallery_template_page) && 'page' !== $photonic_page_meta_title && absint($photonic_gallery_template_page) === absint($id)) { // phpcs:ignore WordPress.Security.NonceVerification
			$album_title = wptexturize(stripslashes_deep(wp_kses_post($_REQUEST['photonic_gallery_title']))); // phpcs:ignore WordPress.Security.NonceVerification

			if ('replace-if-available' === $photonic_page_meta_title) {
				return $album_title;
			}
			elseif ('append-if-available' === $photonic_page_meta_title) {
				return $title . $seperator;// . ' - ';// . $album_title;
			}
			elseif ('prepend-if-available' === $photonic_page_meta_title) {
				return $album_title . ' &ndash; ' . $title;
			}
		}

		return $title;
	}

	/**
	 * Changes the content of the template page to have the description and contents of the gallery.
	 *
	 * @param $content
	 * @return string
	 */
	public function load_gallery($content): string {
		global $photonic_gallery_template_page;
		if (!empty($photonic_gallery_template_page) && is_page($photonic_gallery_template_page)) {
			// Cannot check nonce for front-end gallery, but will vet the request fully
			if (isset($_REQUEST['photonic_gallery'])) { // phpcs:ignore WordPress.Security.NonceVerification
				global $photonic_alternative_shortcode;

				$shortcode_tag = esc_attr($photonic_alternative_shortcode ?: 'gallery');
				$shortcode = sanitize_text_field($_REQUEST['photonic_gallery']); // phpcs:ignore WordPress.Security.NonceVerification
				$shortcode = base64_decode($shortcode); // The `encode` is defined in Core.php's get_gallery_url method. We check this in the following steps.

				// Input is coming via a URL, so we have to ensure it is safe.
				// The input is expected to be a Photonic shortcode, so the simplest way is to strip out all instances of the Photonic
				// shortcode and verify that the input is blank. If it is blank, then all that the input had was a Photonic shortcode.
				$content_without_shortcodes = strip_shortcodes($shortcode);
				if (!empty(trim($shortcode)) && has_shortcode($shortcode, $shortcode_tag) && empty(trim($content_without_shortcodes))) {
					// Looks good. Let's proceed.
					global $photonic_page_content;
					if ('replace-if-available' === $photonic_page_content) {
						$content = do_shortcode($shortcode);
					}
					elseif ('append-if-available' === $photonic_page_content) {
						$content .= do_shortcode($shortcode);
					}
				}
				else {
					// Input looks funny. Stay safe and exit
					$content .= esc_html__('You are trying to display a gallery, but no gallery was found corresponding to the input.', 'photonic');
				}
			}
			else {
				// Input is blank. Show nothing and exit
				$content .= esc_html__('You are trying to display a gallery, but no input was provided.', 'photonic');
			}
		}
		return $content;
	}
}

new Template();

```
