carousel
3 days ago
default
3 days ago
image-viewer
3 days ago
justified
3 days ago
masonry
3 days ago
shared
3 days ago
simple-portfolio
3 days ago
thumbnail
3 days ago
class-default-templates-extension.php
3 days ago
class-default-templates.php
3 days ago
functions.php
3 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 |