PluginProbe ʕ •ᴥ•ʔ
Gallery : FooGallery / 3.3.2
Gallery : FooGallery v3.3.2
3.3.2 3.3.3 3.3.0 3.1.31 3.1.32 3.1.34 3.1.36 3.2.0 3.2.6 trunk 1.10.3 2.0.24 2.1.34 2.2.44 2.3.3 2.4.32 3.0.6 3.1.11 3.1.12 3.1.13 3.1.20 3.1.25 3.1.26 3.1.26.1 3.1.26.2
foogallery / extensions / default-templates / class-default-templates-extension.php
foogallery / extensions / default-templates Last commit date
carousel 4 days ago default 4 days ago image-viewer 4 days ago justified 4 days ago masonry 4 days ago shared 4 days ago simple-portfolio 4 days ago thumbnail 4 days ago class-default-templates-extension.php 4 days ago class-default-templates.php 4 days ago functions.php 4 days ago
class-default-templates-extension.php
19 lines
1 <?php
2
3 if ( ! defined( 'ABSPATH' ) ) {
4 exit;
5 }
6
7 /**
8 * Legacy Default Extensions Class for previous versions where the default templates were an extension.
9 * The class is now empty and has no logic. It is purely here so that existing installs do not break
10 */
11
12 if ( ! class_exists( 'FooGallery_Default_Templates_Extension' ) ) {
13
14 class FooGallery_Default_Templates_Extension {
15 function __construct() {
16 }
17 }
18 }
19