# photonic/2.43/Options/Option_Tab.php

Photonic Gallery &amp; Lightbox for Flickr, SmugMug &amp; Others, version 2.43. 33 lines.

- Page: https://pluginprobe.com/plugins/photonic/2.43/code/Options/Option_Tab.php
- Raw: https://pluginprobe.com/plugins/photonic/2.43/raw/Options/Option_Tab.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.43/code/Options/Option_Tab.php#L10-L20`.

```php
<?php
namespace Photonic_Plugin\Options;

abstract class Option_Tab {
	var $options;

	/**
	 * @return array
	 */
	public function get_options() {
		return $this->options;
	}

	function title_styles() {
		$ret = [
			"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'
		];
		return $ret;
	}

	function selection_range($min, $max) {
		$ret = [];
		for ($i = $min; $i <= $max; $i++) {
			$ret[$i] = $i;
		}
		return $ret;
	}
}
```
