# photonic/3.37/Options/Option_Tab.php

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

- Page: https://pluginprobe.com/plugins/photonic/3.37/code/Options/Option_Tab.php
- Raw: https://pluginprobe.com/plugins/photonic/3.37/raw/Options/Option_Tab.php
- Modified: 2026-07-10T18:22:50+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/Options/Option_Tab.php#L10-L20`.

```php
<?php

namespace Photonic_Plugin\Options;

abstract class Option_Tab {
	protected array $options;

	final public static function get_instance() {
		static $instances = array();
		$called_class = get_called_class();

		if (!isset($instances[$called_class])) {
			$instances[$called_class] = new $called_class();
		}
		return $instances[$called_class];
	}

	/**
	 * @return array
	 */
	public function get_options(): array {
		return $this->options;
	}

	public function title_styles(): array {
		return [
			'regular'            => "<img src='" . trailingslashit(PHOTONIC_URL) . 'include/images/title-regular.png' . "' />Normal title display using the HTML \"title\" attribute",
			'below'              => "<img src='" . trailingslashit(PHOTONIC_URL) . 'include/images/title-below.png' . "' />Below the thumbnail (Doesn't work for Random Justified Gallery and Mosaic Layout)",
			'tooltip'            => "<img src='" . trailingslashit(PHOTONIC_URL) . 'include/images/title-jq-tooltip.png' . "' />Using a JavaScript tooltip",
			'hover-slideup-show' => "<img src='" . trailingslashit(PHOTONIC_URL) . 'include/images/title-slideup.png' . "' />Slide up from bottom upon hover",
			'slideup-stick'      => "<img src='" . trailingslashit(PHOTONIC_URL) . 'include/images/title-slideup.png' . "' />Cover the lower portion always",
			'none'               => 'No title'
		];
	}

	public function selection_range($min, $max): array {
		$ret = [];
		for ($i = $min; $i <= $max; $i++) {
			$ret[$i] = $i;
		}
		return $ret;
	}

	public function get_layout_engine_options(string $option_id, string $option_grouping): array {
		return [
			'name'     => "Layout processing engine",
			'desc'     => "When possible, Photonic tries to use CSS to build the layouts. 
					This has the advantage of being fast and can work well with lazy-loading and AJAX-based plugins, particularly if the loading mode (<em>Photonic &rarr; Settings &rarr; Generic Options &rarr; Advanced &rarr; Loading Mode</em>) is PHP. 
					<br/><br/>The downside is that CSS-based rendering is occasionally incorrect, particularly if the source has incorrect sizes. 
					If this is a frequent issue, you can default to a JS-generated layout (which is always more accurate). This can be managed individually for each gallery.
					<br/><br/>In case some of the images in a gallery have missing size metadata, the JS mode will be used, regardless of this selection.
					<br/><br/>Pick your default processor:",
			'id'       => $option_id,
			'grouping' => $option_grouping,
			'type'     => 'select',
			'options'  => [
				'css' => 'Use CSS unless overridden by a gallery individually',
				'js'  => 'Use JS unless overridden by a gallery individually',
			]
		];
	}
}

```
